body {
    -webkit-tap-highlight-color: transparent;
    background-color: #fbf8f3;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid #ebdcc3;
    border-bottom-color: #b88040;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Calendar Desktop Grid */
@media (min-width: 768px) {
    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 1px;
        background-color: #e2e8f0;
        border: 1px solid #e2e8f0;
        border-radius: 0.75rem;
        overflow: hidden;
    }
    .calendar-cell {
        min-height: 120px;
        background-color: white;
    }
}

/* Mobile List Mode */
@media (max-width: 767px) {
    .calendar-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .calendar-header, .empty-day {
        display: none;
    }
    .calendar-cell {
        border-radius: 1rem;
        background: white;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.view-section {
    transition: opacity 0.3s ease;
}
