/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Centered Layout */
.container {
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin: 50px auto;
}

/* Input Box Styling */
.input-box {
    margin-bottom: 20px;
}

input, select {
    width: 90%;
    padding: 12px;
    margin-top: 10px;
    border: 2px solid #007BFF;
    border-radius: 8px;
    font-size: 16px;
}

/* Dropdown Styling */
select {
    appearance: none;
    background: #f8f9fa;
    cursor: pointer;
}

/* Button Styling */
button {
    margin-top: 10px;
    padding: 12px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Recommendation List */
ul {
    list-style: none;
    padding: 0;
}

li {
    background: #f8f9fa;
    padding: 15px;
    border-left: 5px solid #007BFF;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

li:hover {
    transform: scale(1.02);
}

#recommendation-title, #recommendations {
    display: none; /* Initially hidden */
}