/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #fff;
    color: #222;
}

/* Pollen Data Container */
#pollen-data {
    margin-top: 20px;
}

/* Pollen Entry Styling */
.pollen-type {
    margin: 10px 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

/* Severity Levels with Symbols and Accessibility Colors */
.low {
    color: green;
}
.low::before {
    content: "🟢 ";
}

.medium {
    color: orange;
}
.medium::before {
    content: "🟠 ";
}

.high {
    color: red;
}
.high::before {
    content: "🔴 ";
}

/* Dropdown Styling */
.plant-dropdown {
    margin-top: 10px;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.plant-dropdown:hover {
    background-color: #eef;
    cursor: pointer;
}

/* Plant Details Styling */
.plant-details {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Text Block Styling */
.plant-info {
    line-height: 1.5;
    font-size: 15px;
    color: #333;
}

/* Responsive Enhancements */
@media (max-width: 600px) {
    .plant-details {
        font-size: 14px;
    }
    .plant-dropdown {
        width: 100%;
    }
}