/* Base styling */
body {
    background-color: #f8f9fa;
    color: #343a40;
}

h1 {
    font-size: 2.5rem;
    color: #495057;
}

/* Form overrides */
#translate-form {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Progress bar */
#progress-bar {
    height: 1.5rem;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border: none;
}
.btn-danger {
    background-color: #dc3545;
    border: none;
}
.btn-success {
    background-color: #28a745;
    border: none;
}

/* Error message */
#error-msg {
    font-weight: bold;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .row > .col-md-6 {
        margin-bottom: 1rem;
    }
}
