
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    margin: 0;
}
h1 {
    color: #0a84ff;
    text-align: center;
}
#intro-text {
    text-align: left;
    max-width: 600px;
    margin: auto;
    margin-bottom: 20px;
}
#inputs-container {
    max-width: 600px;
    margin: auto;
}
.input-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
select {
    flex: 1;
    margin-right: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
select:last-child {
    margin-right: 0;
}
.input-row:not(:last-child) {
    border-bottom: 3px solid #7b7979;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
button {
    background-color: #0a84ff;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block; /* Changed from inline-block to block for full width */
    font-size: 16px;
    margin: 10px auto; /* Center button and maintain the vertical margin */
    cursor: pointer;
    border-radius: 4px;
    width: 100%; /* Stretch to the full width of the container */
    max-width: 600px; /* Maximum width to align with other inputs */
}
#prediction {
    text-align: center;
    font-size: 24px;
    color: #0a84ff;
    font-weight: 500;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    max-width: 600px;
    margin: auto;
    box-sizing: border-box; /* Include padding and border in the width */
}
#prediction:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
@media (max-width: 600px) {
    select {
        padding: 8px;
        margin-right: 5px;
    }
    .input-row {
        flex-direction: column;
    }
    select {
        margin-right: 0;
        margin-bottom: 10px;
    }
    select:last-child {
        margin-bottom: 0;
    }
}

