/* styles.css */
body {
    background-color: #f0f4c3;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #2e7d32;
    padding: 15px;
}

header h5 {
    margin: 0;
    text-align: center;
    color: white;
    font-weight: bold;
}

.translate-container {
    text-align: center;
    margin: 15px 0;
}

.container {
    flex: 1;
    margin-top: 50px;
    max-width: 500px;
}

h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #1b5e20;
}

.input-field label {
    font-size: 1.2rem;
}

#result {
    text-align: center;
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d47a1;
}

.btn-calculate, .btn-reset {
    display: block;
    width: 100%;
    margin-top: 15px;
}

.btn-reset {
    background-color: #ef5350;
}

footer {
    background-color: #2e7d32;
    padding: 10px;
    text-align: center;
    color: white;
}
