.e-schedule-dialog .e-time-zone-container {
    display: none !important;
}

.scheduler-wrapper {
    overflow-x: auto;
    width: 100%;
}

.scheduler-loading {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #0d6efd;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media print {
    .scheduler-wrapper {
        overflow: visible !important;
        width: auto !important;
    }

    .e-schedule-toolbar,
    .e-toolbar,
    .scheduler-loading {
        display: none !important;
    }
}

.e-schedule .e-appointment {
    border-radius: 6px;
    font-size: 12px;
    padding: 4px;
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
    height: 50px !important;
}

.e-schedule .e-resource-text {
    font-weight: 600;
}

.e-schedule .e-resource-cells {
    background: #f5f7fa;
}

.e-schedule .e-work-cells {
    border-right: 1px solid #eee;
}

.e-schedule .e-toolbar {
    background: #fafafa;
}

.e-schedule .past-event {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
}

.e-schedule .past-event .e-subject,
.e-schedule .past-event .e-time {
    color: #fff !important;
}