<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Cookie banner CSS - Ã¶nemli hata dÃ¼zeltmeleri iÃ§erir */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    padding: 20px;
    z-index: 10000; /* Daha yÃ¼ksek z-index ile her ÅŸeyin Ã¼zerinde */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    transform: translateY(100%); /* BaÅŸlangÄ±Ã§ta gÃ¶rÃ¼nmez */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease; /* GeÃ§iÅŸlere opacity ekle */
    opacity: 0.95; /* VarsayÄ±lan opaklÄ±k */
}

.cookie-consent-banner.active {
    transform: translateY(0); /* Aktif olduÄŸunda gÃ¶rÃ¼nÃ¼r */
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    background-color: #f4a506;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.cookie-btn:hover {
    background-color: #e09400;
}

.cookie-settings {
    margin-top: 15px;
    background-color: #333;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-item p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #aaa;
}

/* Toggle switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Gerekli Ã§erezler iÃ§in basÄ±lamayan slider (soluk gÃ¶rÃ¼nÃ¼m) */
.required-cookie {
    opacity: 0.6;
    cursor: not-allowed;
}

.required-cookie .slider {
    background-color: #888 !important; /* Daha soluk bir arkaplan */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); /* Ä°Ã§e doÄŸru hafif gÃ¶lge */
    cursor: not-allowed;
}

.required-cookie .slider:before {
    opacity: 0.8; /* DÃ¼ÄŸme kÄ±smÄ± da hafif soluk */
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #f4a506;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Mobil uyumluluk */
@media (max-width: 767px) {
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
</pre></body></html>