/* === Global Styles === */
body {
    font-family: 'Lato', sans-serif;
    background-color: #F3F4F6; /* Light Gray */
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 700px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #1F2937; /* Dark Blue */
    text-align: center;
    text-transform: uppercase;
}

p, label, li {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2937;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    text-align: left;
}

input, select {
    padding: 10px;
    width: 100%;
    max-width: 250px;
    margin-top: 5px;
    font-size: 1rem;
    border: 2px solid #1F2937;
    border-radius: 6px;
    background-color: white;
    color: #1F2937;
}

input[type="radio"] {
    transform: scale(1.2);
    margin-right: 8px;
}

button {
    margin-top: 15px;
    padding: 12px 20px;
    width: 100%;
    background: #F59E0B; /* Orange Accent */
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

button:hover {
    background: #d97706;
    transform: scale(1.05);
}

#result {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1F2937;
    background: #FDE68A;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #F59E0B;
}

#explanations, #recommended-reading {
    margin-top: 40px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #1F2937;
}

#suggestion {
    margin-top: 40px;
    padding: 15px;
    background-color: #FDE68A;
    border-left: 6px solid #F59E0B;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#references {
    text-align: left;
    font-size: 0.9rem;
    margin-top: 15px;
}

#references ul {
    padding-left: 20px;
    margin-top: 10px;
}

#references li {
    margin-bottom: 8px;
    line-height: 1.5;
}

#references a {
    color: #1F2937;
    font-weight: normal;
    text-decoration: none;
}

#references a:hover {
    color: #F59E0B;
    text-decoration: underline;
}

/* === Link Styles === */
a {
    color: #F59E0B;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* === Footer === */
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}
