/* Çerez Politikası Kutusu */
#cookieConsent {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* İçerik Alanı */
.cookie-content {
    padding: 15px;
    text-align: center;
}

/* Başlık */
.cookie-content h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

/* Açıklama Metni */
.cookie-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Düğme Alanı */
.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mavi Düğmeler */
.policy-btn {
    width: 100%;
    padding: 10px;
    background-color: #2d297d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.policy-btn:hover {
    opacity: 0.9;
}

/* Beyaz Arka Planlı Kabul Et Butonu */
.accept-btn {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    color: #2d297d;
    border: 2px solid #2d297d;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.accept-btn:hover {
    opacity: 0.9;
}
