/* Add here all your CSS customizations */
.dataTables_wrapper {
    position: unset;
    padding: 0;
    margin: 0;
}

.weekdays {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .weekdays .day {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 55px;
        height: 40px;
        border: 1px solid #ced4da;
        border-radius: 6px;
        background: #f8f9fa;
        font-weight: 600;
        transition: all 0.2s ease-in-out;
        position: relative;
    }

        .weekdays .day input {
            display: none;
        }

        .weekdays .day span {
            pointer-events: none;
        }

        /* Checked state */
        .weekdays .day input:checked + span {
            color: #fff;
        }

        .weekdays .day input:checked ~ span,
        .weekdays .day:has(input:checked) {
            background: #0d6efd;
            border-color: #0d6efd;
        }

        /* Hover */
        .weekdays .day:hover {
            background: #e9ecef;
        }

        /* Disabled */
        .weekdays .day input:disabled + span {
            background: #dee2e6;
            color: #6c757d;
        }

.day.disabled {
    background-color: #e0e0e0;
    color: #9e9e9e;
    cursor: not-allowed;
    opacity: 0.7;
}

    .day.disabled span {
        pointer-events: none;
    }


.is-invalid {
    border: 1px solid #dc3545 !important;
}

.select2-container {
    z-index: 1060 !important;
}
.input-error {
    border: 1px solid #dc3545 !important;
}

.select2-error .select2-selection {
    border: 1px solid #dc3545 !important;
}

.bootstrap-tagsinput.input-error {
    border: 1px solid #dc3545 !important;
}


