<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Р”РѕРїРѕР»РЅРёС‚РµР»СЊРЅС‹Рµ СЃС‚РёР»Рё РґР»СЏ РіРѕРґРѕРІРѕРіРѕ РєР°Р»РµРЅРґР°СЂСЏ
 *
 * @package YouKarta
 */

/* Р—Р°РіРѕР»РѕРІРѕРє РіРѕРґРѕРІРѕРіРѕ РєР°Р»РµРЅРґР°СЂСЏ */
.calendar-year-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-year-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* РЎРІРѕРґРЅР°СЏ РёРЅС„РѕСЂРјР°С†РёСЏ Рѕ РєР°Р»РµРЅРґР°СЂРµ */
.calendar-summary {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.calendar-summary ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.calendar-summary li {
    margin: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-basis: calc(50% - 1rem);
    text-align: center;
}

/* Р›РµРіРµРЅРґР° РєР°Р»РµРЅРґР°СЂСЏ */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.workday {
    background-color: #c8e6c9;
    border: 1px solid #a5d6a7;
}

.legend-color.weekend {
    background-color: #ffecb3;
    border: 1px solid #ffe082;
}

.legend-color.holiday {
    background-color: #ffcdd2;
    border: 1px solid #ef9a9a;
}

/* РЎС‚РёР»Рё РґР»СЏ СЏС‡РµРµРє РєР°Р»РµРЅРґР°СЂСЏ */
.calendar-grid .day {
    position: relative;
    cursor: pointer;
}

.calendar-grid .day:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.calendar-grid .day[title=""]:hover::after {
    display: none;
}

/* РђРґР°РїС‚РёРІРЅС‹Рµ СЃС‚РёР»Рё РґР»СЏ РєР°Р»РµРЅРґР°СЂСЏ РЅР° РіРѕРґ */
@media (max-width: 992px) {
    .calendar-summary ul {
        flex-direction: column;
    }
    
    .calendar-summary li {
        flex-basis: 100%;
        margin: 0.25rem 0;
    }
    
    .calendar-legend {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .calendar-months {
        display: flex;
        flex-direction: column;
    }
    
    .calendar-month {
        margin-bottom: 2rem;
    }
}

/* РўР°Р±С‹ РґР»СЏ РЅР°РІРёРіР°С†РёРё РїРѕ РјРµСЃСЏС†Р°Рј */
.calendar-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.calendar-tab {
    padding: 0.5rem 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.calendar-tab:hover {
    background-color: #e0e0e0;
}

.calendar-tab.active {
    background-color: var(--primary);
    color: #fff;
}

/* РљРѕРЅС‚РµР№РЅРµСЂС‹ РґР»СЏ РјРµСЃСЏС†РµРІ */
.month-container {
    display: none;
}

.month-container.active {
    display: block;
}</pre></body></html>