/* style.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 40px;
    background-color: #005a8d;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

h1, h2 {
    color: #005a8d;
}

h2 {
    border-bottom: 2px solid #005a8d;
    padding-bottom: 5px;
    margin-top: 30px;
}

.part {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.input-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

input[type="number"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

#eligibilityResult, .result {
    margin-top: 10px;
    font-weight: bold;
}

ul#fruitList {
    list-style-type: disc;
    padding-left: 20px;
}

ul#fruitList li {
    margin-bottom: 5px;
}

#countdownDisplay {
    font-size: 1.2em;
    font-family: "Courier New", monospace;
    color: #4CAF50;
}