/**
 * Cerkiew Calendar CSS - Tylko niezbędne style funkcjonalne
 */

/* Style dla przełączania widoku kalendarza */
.cerkiew-calendar-content {
    transition: opacity 0.3s ease;
}

.cerkiew-calendar-content-active {
    display: block;
    opacity: 1;
}

.cerkiew-calendar-content-hidden {
    display: none !important;
    opacity: 0;
}

/* Style dla nawigacji dat */
.cerkiew-calendar-navigation {
    margin-bottom: 15px;
    text-align: center;
}

.cerkiew-calendar-nav-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cerkiew-calendar-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    text-decoration: none;
    color: #495057;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cerkiew-calendar-nav-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #212529;
    text-decoration: none;
}

.cerkiew-calendar-nav-btn:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

.cerkiew-calendar-nav-icon {
    line-height: 1;
}

.cerkiew-calendar-current-date {
    font-weight: 600;
    color: #495057;
    font-size: 16px;
    min-width: 150px;
    text-align: center;
}

/* Loading state */
.cerkiew-calendar-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.cerkiew-calendar-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: cerkiew-calendar-spin 1s linear infinite;
}

@keyframes cerkiew-calendar-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 