.two-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* batas 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
}

/* Venue List Lapangan - Slot */
.unit-loading-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.field-slot-item {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* slot normal */
.field-slot-item .border {
    background-color: #fff;
}

/* slot booked (disabled) */
.field-slot-item-disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.field-slot-item-disabled .border {
    background-color: #f8f9fa;
}

/* slot selected */
.field-slot-item-selected .border {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}