.season-counter {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    gap: 10px;
}

.season-icon-container {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.danish-counter {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.season-icon {
    font-size: 24px;
    color: #4CAF50;
    cursor: pointer;
}

#season-score {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border: 2px solid white;
}

.danish-flag {
    font-size: 20px;
    color: #C8102E;
    cursor: pointer;
}

#danish-score {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #C8102E;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border: 2px solid white;
}

.ingredient-item.danish-ingredient {
    border-left: 3px solid #C8102E;
}

.ingredient-item.in-season.danish-ingredient {
    border-left: 3px solid #4CAF50;
    border-right: 3px solid #C8102E;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--beige-white);
    margin: 10% auto;
    padding: 0;
    border-radius: 12px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.modal-header h2 {
    margin: 0;
    color: var(--dark-blue);
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: var(--dark-blue);
}

.modal-body {
    padding: 20px;
}

.season-ingredient-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    background-color: #f0f8f0;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.season-ingredient-item.in-recipe {
    background-color: #e8f5e8;
    font-weight: bold;
}

.season-badge {
    margin-left: 5px;
    color: #4CAF50;
    font-size: 1.2em;
}

.danish-badge {
    margin-left: 5px;
    font-size: 1.2em;
}

.ingredient-item.in-season {
    background-color: #f0f8f0;
    border-left: 3px solid #4CAF50;
    padding-left: 8px;
    margin-left: -8px;
}

.ingredient-item.danish-ingredient {
    background-color: #fff0f0;
    border-left: 3px solid #C8102E;
    padding-left: 8px;
    margin-left: -8px;
}

.ingredient-item.in-season.danish-ingredient {
    background: linear-gradient(90deg, #f0f8f0 0%, #fff0f0 100%);
    border-left: 3px solid #4CAF50;
    border-right: 3px solid #C8102E;
    padding-left: 8px;
    margin-left: -8px;
}

