/* Ked-O Animasyon Stilleri */
#cat-container {
    position: fixed;
    bottom: 0;
    right: -50px;
    width: 180px;
    height: 180px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998; /* Loading'den yüksek */
    pointer-events: auto !important;
    opacity: 0.9;
    cursor: pointer !important;
}

/* Loading overlay'den daha yüksek z-index */
#global-loading {
    z-index: 9997; /* Kediden düşük */
}

/* Modal açıkken kedi */
body.modal-open #cat-container {
    opacity: 0.3 !important;
    pointer-events: none !important;
}

#cat-container:hover {
    right: 40px !important;
    transform: scale(1.05);
    opacity: 1;
}

#cat-container.cat-visible {
    right: 10px;
    opacity: 0.9;
}

#cat-container.cat-hidden {
    right: -50px;
    opacity: 0;
}

/* Mini pomodoro için z-index ayarı */
.pomodoro-mini {
    z-index: 9999;
}

/* Animasyon için responsive ayarlar */
@media (max-width: 768px) {
    #cat-container {
        width: 120px;
        height: 120px;
        right: -40px;
    }

    #cat-container:hover,
    #cat-container.cat-visible {
        right: 5px;
    }
}

@media (max-width: 576px) {
    #cat-container {
        width: 100px;
        height: 100px;
        right: -35px;
    }
}

/* Animasyon için özel efektler */
.cat-pulse {
    animation: catPulse 2s infinite;
}

@keyframes catPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Karanlık mod desteği */
@media (prefers-color-scheme: dark) {
    #cat-container {
        filter: brightness(0.9);
    }
}

/* Modal açıkken kedi animasyonunun üstte çıkarak modal etkileşimini engellemesini önle */
/* body.modal-open #cat-container,
body.modal-open .cat-animation {
    pointer-events: none !important;
    display: none !important;
} */

/* Ayrıca class uyumluluğu için cat-animation tanımı */
.cat-animation {
    /* wrapper için ek bir isimlendirme - zaten #cat-container stillerini kullanır */
}


/* Hızlı Ekleme Modal Stilleri - Ked-O temasına uygun */
#quickAddModal .modal-content {
    border-radius: 12px;
    border: none;
}

#quickAddModal .modal-header {
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
}

#quickAddModal .nav-pills .nav-link {
    border-radius: 6px;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

#quickAddModal .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
    border: none;
}

#quickAddModal .form-control:focus,
#quickAddModal .form-select:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.15);
}

#quickAddModal .btn {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border: none;
}

/* Responsive düzenlemeler */
@media (max-width: 576px) {
    #quickAddModal .modal-dialog {
        margin: 1rem;
    }
    
    #quickAddModal .modal-body {
        padding: 1rem;
    }
}

/* Kedi animasyonu modal etkileşimi */
#cat-container.modal-open {
    opacity: 0.3 !important;
    pointer-events: none !important;
}

/* Form switch stil iyileştirmesi */
#quickAddModal .form-check-input:checked {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

/* Hızlı Ekleme Kategori Validasyon Stilleri */
#quickAddModal .is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

#quickAddModal .form-text {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Kategori seçim alanı için özel stil */
#quickAddModal .form-label small {
    font-size: 0.7rem;
}

/* Yeni kategori input alanı için vurgu */
#newNoteCategory, #newTaskCategory {
    border-left: 3px solid #6f42c1;
}

/* Modal dışına tıklama için backdrop */
.modal-backdrop {
    z-index: 9990;
}

#quickAddModal {
    z-index: 10000;
}

/* Form validasyon stilleri */
#quickAddModal .form-control:invalid,
#quickAddModal .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

#quickAddModal .form-control:valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15);
}

/* Responsive düzenlemeler */
@media (max-width: 576px) {
    #quickAddModal .row.g-2 {
        flex-direction: column;
    }
    
    #quickAddModal .row.g-2 .col-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
}