/**
 * Hatice Günlükleri Çerez Politikası Stiller
 */

/* Modal stilleri */
.cookie-modal .modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    overflow: hidden;
}

.cookie-modal .modal-header {
    background: linear-gradient(135deg, #fcb8d0, #e83e8c);
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.cookie-modal .modal-header .modal-title {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cookie-modal .modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.cookie-modal .modal-footer {
    border-top: none;
    padding: 1rem 1.5rem 1.5rem;
}

/* Çerez tip kartları */
.cookie-type-card {
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.cookie-type-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cookie-type-card .card-header {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.cookie-type-card .card-header span {
    color: #e83e8c;
    font-weight: bold;
}

.cookie-type-card .form-check-input:checked {
    background-color: #e83e8c;
    border-color: #e83e8c;
}

.cookie-type-card .form-check-input:disabled {
    opacity: 0.5;
}

/* Cookie kartlarında yazı rengi pembe */
.cookie-type-card .card-body p {
    color: #e83e8c;
}

/* Buton stilleri */
.cookie-btn {
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #fcb8d0, #e83e8c);
    border: none;
    color: white;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(232, 62, 140, 0.3);
}

.cookie-btn-outline {
    border: 1px solid #ccc;
    color: #666;
    background: transparent;
}

.cookie-btn-outline:hover {
    background-color: #f8f9fa;
    color: #444;
}

/* Mobil uyumlu düzenlemeler */
@media (max-width: 576px) {
    .cookie-modal .modal-body {
        padding: 1rem;
        max-height: 65vh;
    }
    
    .cookie-modal .modal-footer {
        flex-direction: column;
        gap: 10px;
        padding: 1rem;
    }
    
    .cookie-modal .modal-footer .btn {
        width: 100%;
    }
}

/* Onay toast mesajı */
.cookie-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-left: 4px solid #e83e8c;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1090;
    min-width: 280px;
    max-width: 350px;
}

.cookie-toast .toast-header {
    background: transparent;
    border: none;
    padding: 1rem 1rem 0;
}

.cookie-toast .toast-body {
    padding: 0.5rem 1rem 1rem;
}

/* Açıklama metni stilleri */
.cookie-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Cookie card içindeki açıklama metinlerinin rengi siyah */
.mb-0.cookie-description {
    color: #000000 !important;
}

.cookie-policy-link {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cookie-policy-link:hover {
    color: #d21e7a;
    text-decoration: underline;
} 