/* Basic Reset & Body Styling */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Headings and Text */
h1 {
    color: #006400; /* Dark Green */
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    color: #228B22; /* Forest Green */
    margin-top: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

p {
    margin-bottom: 15px;
}

/* Selection Area */
.selection-area {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
    font-size: 1rem;
    background-color: #fff;
}

select:disabled {
    background-color: #e9e9e9;
    cursor: not-allowed;
    opacity: 0.7;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

/* Results Area */
.results-section {
    margin-top: 20px;
}

#results-container {
    margin-top: 15px;
}

#selected-microgreen-name {
    font-style: italic;
    color: #228B22;
}

/* Individual Nutrient Item Styling */
.nutrient-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nutrient-item h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #006400;
}

.nutrient-item p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.nutrient-item p:last-child {
    margin-bottom: 0;
}

.nutrient-item .relevance {
    font-style: italic;
    color: #555;
    font-size: 0.9rem;
    border-left: 3px solid #90EE90; /* Light Green */
    padding-left: 10px;
    margin-top: 10px;
}

/* Disclaimer */
.disclaimer-section {
    margin-top: 25px;
}

#disclaimer-text {
    font-size: 0.85rem;
    color: #666;
    background-color: #fffacd; /* Lemon Chiffon */
    border: 1px dashed #ccc;
    padding: 10px;
    border-radius: 4px;
    text-align: justify;
}

#disclaimer-text strong {
    color: #555;
}

/* Responsiveness (Basic Example) */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 15px;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.2rem;
    }
}