/* Service Item Fix - Ensure selected state is visible */
.service-item {
    cursor: pointer !important;
    position: relative !important;
    user-select: none;
    background-color: #fff !important;
    transition: all 0.3s ease !important;
}

/* Override any conflicting styles */
.service-item.selected {
    background-color: #ffe6f2 !important;
    border-color: #ff66b2 !important;
    border-width: 2px !important;
    border-style: solid !important;
    box-shadow: 0 2px 8px rgba(255, 102, 178, 0.2) !important;
}

/* Checkmark for selected items */
.service-item.selected::after {
    content: '✓' !important;
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    background: #ff66b2 !important;
    color: #fff !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: 14px !important;
    z-index: 10 !important;
}

/* Ensure labels inside service items don't block clicks */
.service-item label {
    pointer-events: none !important;
}

/* Make sure the name is visible */
.service-item .service-name {
    pointer-events: none !important;
}

/* Debug - Add visible border to all service items */
.service-item {
    border: 2px solid #e0e0e0 !important;
}
