/* Guest count section styling */
.guest-count-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.06);
}

.guest-count-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.guest-count-item {
    text-align: center;
    padding: 16px;
    background: #F5F1E3;
    border-radius: 10px;
    border: 1px solid rgba(47, 82, 51, 0.1);
    transition: all 0.3s ease;
}

.guest-count-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.12);
}

/* === LÄGG TILL DETTA HÄR === */

/* Staff section - matcha guest section styling */
.staff-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.06);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.staff-item {
    text-align: center;
    padding: 16px;
    background: #F5F1E3;
    border-radius: 10px;
    border: 1px solid rgba(47, 82, 51, 0.1);
    transition: all 0.3s ease;
}

.staff-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.12);
}

.staff-item label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
    text-align: center;
}

.staff-item input {
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.staff-item small {
    display: block;
    font-size: 11px;
    color: #38a169;
    font-weight: 600;
    margin-top: 6px;
}

/* Drivers eating choice - kompakt layout */
.drivers-eating-choice {
    grid-column: 1 / -1;
    background: #FAF8F0;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(47, 82, 51, 0.1);
}

.drivers-eating-choice label[for="label-drivers-eating"] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
}

.drivers-eating-options {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.drivers-eating-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    cursor: pointer;
}

.drivers-eating-options input[type="radio"] {
    width: 16px;
    height: 16px;
}

/* Other staff description - kompakt */
.staff-description-group {
    grid-column: 1 / -1;
    background: #FAF8F0;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(47, 82, 51, 0.1);
}

.staff-description-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
    text-align: left;
}

.staff-description-group input {
    width: 100%;
    text-align: left;
    font-size: 14px;
}

/* === SLUT PÅ NY CSS === */

.guest-count-item label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
    text-align: center;
}

.guest-count-item input {
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

/* Special requests section */
.special-requests {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.06);
}

.special-requests textarea {
    min-height: 100px;
    resize: vertical;
}

@media (max-width: 768px) {
    .guest-count-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Staff grid mobile */
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Drivers eating options mobile */
    .drivers-eating-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .drivers-eating-options label {
        font-size: 14px;
    }
    
    /* Staff items mobile */
    .staff-item {
        padding: 14px;
    }
    
    .staff-item label {
        font-size: 14px;
    }
    
    .drivers-eating-choice,
    .staff-description-group {
        padding: 14px;
    }
}
