/**
 * Staff Selection Pink Theme
 * 
 * Pink gradient theme cho staff selection với chữ trắng
 */

/* ===== STAFF SELECTION CONTAINER ===== */
.w-booking-staff-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px !important;
    margin-top: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif !important;
}

/* ===== STAFF ITEM PINK THEME ===== */
.w-staff-item {
    position: relative;
    margin-bottom: 10px !important;
}

.w-staff-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.w-staff-checkbox-label {
    display: block !important;
    padding: 20px !important;
    border: 2px solid #f8bbd9 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(135deg, #ff9eb5 0%, #ff6b9d 100%) !important;
    color: white !important;
    position: relative !important;
    margin-bottom: 0 !important;
}

.w-staff-checkbox-label:hover {
    border-color: #ff1744 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255,23,68,0.3) !important;
    background: linear-gradient(135deg, #ff7a9a 0%, #ff1744 100%) !important;
}

.w-staff-item input:checked + .w-staff-checkbox-label {
    border-color: #e91e63 !important;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%) !important;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2) !important;
    color: white !important;
}

.w-staff-item input:checked + .w-staff-checkbox-label::after {
    content: "✓" !important;
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    background: white !important;
    color: #e91e63 !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 16px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}

/* ===== STAFF TEXT STYLES ===== */
.w-staff-name {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 8px !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

.w-staff-specialties {
    color: rgba(255,255,255,0.9) !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

.w-staff-experience {
    color: rgba(255,255,255,0.8) !important;
    font-size: 13px !important;
    font-style: italic !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

.w-staff-position {
    color: rgba(255,255,255,0.85) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

.w-staff-rating {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-bottom: 8px !important;
}

.w-staff-rating .rating-stars {
    color: #ffd700 !important;
    font-size: 14px !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
}

.w-staff-rating .rating-number {
    color: rgba(255,255,255,0.9) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

/* ===== STAFF AVATAR ===== */
.w-staff-avatar-placeholder {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .w-booking-staff-selection {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .w-staff-checkbox-label {
        padding: 15px !important;
    }
    
    .w-staff-name {
        font-size: 16px !important;
    }
}
