/* Çerez Konteynırı */
.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

/* İçerik Yazısı */
.cookie-content p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-content a {
    color: #007bff;
    text-decoration: underline;
    font-weight: 600;
}

/* Buton Grubu */
.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

/* Kabul Et Butonu */
.cookie-btn.accept {
    background-color: #28a745;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #218838;
}

/* Ayarlar/Reddet Butonu */
.cookie-btn.settings {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-btn.settings:hover {
    background-color: #e2e6ea;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
    }
    
    .cookie-buttons {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}