
    .time-slot-selector {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .time-slot-selector button {
        display: inline-block;
        min-width: 100px;
    }

    /* Time slot pills container */
    #time-slots {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    /* Base pill style */
    #time-slots .nav-link {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: 1.5rem;
        border: 1px solid #2f57ef;
        background: #f8f9fa;
        color: #333;
        font-weight: 500;
        transition: background 0.2s ease,
            color 0.2s ease,
            box-shadow 0.2s ease;
        margin: 0;
    }

    #time-slots .nav-link:not(.disabled):hover {
        background: #e8f0fe;
        box-shadow: 0 2px 6px rgba(26, 115, 232, 0.2);
    }

    #time-slots .nav-link.active {
        background: #1a73e8;
        color: #fff;
        border-color: #1a73e8;
        box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    }

    #time-slots .nav-link.disabled {
        background: #ececec;
        color: #999;
        border-color: #ddd;
        cursor: not-allowed;
        opacity: 0.7;
    }

    /* Service card hover and active */
    .service-card {
        cursor: pointer;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .service-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .service-card.active {
        outline: 2px solid #1a73e8;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(26, 115, 232, 0.3);
    }

    .inner::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        left: 0;
        outline: 2px solid #1a73e8;
        transition: 0.2s;
        opacity: 0;
    }

    .custom-service-card:hover .inner::after {
        opacity: 1;
    }

    .verify-warning {
        color: #d9534f;
        font-weight: bold;
        font-style: italic;
        margin-top: 0.5rem;
    }



    #drop-area:hover {
        background: #f0f8ff;
        border-color: #0d6efd;
        box-shadow: 0 0 15px rgba(13, 110, 253, 0.2);
        transform: translateY(-2px);
    }

    #drop-area i {
        transition: transform 0.3s ease;
    }

    #drop-area:hover i {
        transform: scale(1.1);
    }



