/* Çerez Politikası Stilleri - Şık ve kompakt tasarım */
.cc-window {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    max-width: 400px !important;
    width: 90% !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
    padding: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    font-size: 0.9em !important;
    line-height: 1.5 !important;
    z-index: 10000 !important;
    display: none !important;
}

.cc-window.cc-invisible {
    display: none !important;
}

.cc-window.cc-floating {
    display: block !important;
}

.cc-header {
    font-size: 1.3em !important;
    font-weight: 600 !important;
    color: #1a202c !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.cc-message {
    color: #4a5568 !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    font-size: 0.9em !important;
}

.cc-link {
    color: #2b6cb0 !important;
    text-decoration: none !important;
}

.cc-link:hover {
    text-decoration: underline !important;
}

.cc-compliance {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    padding: 12px 16px !important;
}

.cc-btn {
    padding: 8px 16px !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    min-width: 100px !important;
    text-align: center !important;
    display: inline-block !important;
    font-size: 0.85em !important;
}

.cc-btn.cc-allow {
    background-color: #38a169 !important;
    color: #fff !important;
}

.cc-btn.cc-allow:hover {
    background-color: #2f855a !important;
}

.cc-btn.cc-deny {
    background-color: #e53e3e !important;
    color: #fff !important;
}

.cc-btn.cc-deny:hover {
    background-color: #c53030 !important;
}

.cc-btn.cc-customize {
    background-color: #2b6cb0 !important;
    color: #fff !important;
}

.cc-btn.cc-customize:hover {
    background-color: #2c5282 !important;
}

.cc-btn.cc-save {
    background-color: #718096 !important;
    color: #fff !important;
}

.cc-btn.cc-save:hover {
    background-color: #5a6268 !important;
}

.cc-btn.cc-dismiss {
    background-color: #e2e8f0 !important;
    color: #1a202c !important;
}

.cc-btn.cc-dismiss:hover {
    background-color: #cbd5e0 !important;
}

.cc-revoke {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    padding: 8px 12px !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
    z-index: 10000 !important;
    font-size: 0.85em !important;
    color: #1a202c !important;
}

.cc-revoke:hover {
    background: #edf2f7 !important;
}

.cc-modal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.6) !important;
    z-index: 10001 !important;
    justify-content: center !important;
    align-items: center !important;
}

.cc-modal.show {
    display: flex !important;
}

.cc-modal-content {
    background: #ffffff !important;
    border-radius: 8px !important;
    max-width: 500px !important;
    width: 90% !important;
    padding: 16px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.cc-modal-content h2 {
    font-size: 1.3em !important;
    color: #1a202c !important;
    margin: 0 0 12px 0 !important;
}

.cc-option {
    margin-bottom: 12px !important;
}

.cc-option label {
    display: flex !important;
    align-items: center !important;
    font-size: 0.85em !important;
    color: #4a5568 !important;
}

.cc-option input {
    margin-right: 10px !important;
}

.cc-modal-buttons {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin-top: 16px !important;
}

@media screen and (max-width: 900px) and (min-width: 600px) {
    .cc-window {
        max-width: 600px !important;
        width: 90% !important;
        bottom: 16px !important;
        right: 16px !important;
    }

    .cc-compliance {
        flex-direction: row !important;
        gap: 8px !important;
    }

    .cc-btn {
        min-width: 90px !important;
    }
}

@media screen and (max-width: 600px) {
    .cc-window {
        max-width: 90% !important;
        bottom: 12px !important;
        right: 12px !important;
    }

    .cc-compliance {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .cc-btn {
        width: 100% !important;
    }
}