/* KVKK Consent Banner Styling */
#kvkk-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    padding: 20px;
    border-radius: 12px;
    display: none;
    border: 1px solid #eee;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

#kvkk-consent-banner .kvkk-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#kvkk-consent-banner .kvkk-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

#kvkk-consent-banner .kvkk-text strong {
    color: #000;
}

#kvkk-consent-banner .kvkk-text a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

#kvkk-consent-banner .kvkk-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#kvkk-consent-banner .btn-kvkk {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

#kvkk-consent-banner .btn-accept {
    background: #000;
    color: #fff;
}

#kvkk-consent-banner .btn-accept:hover {
    background: #333;
}

#kvkk-consent-banner .btn-reject {
    background: #eee;
    color: #555;
}

#kvkk-consent-banner .btn-reject:hover {
    background: #ddd;
}

.form-kvkk-disabled-msg {
    padding: 15px;
    background: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    display: none;
}

@media (max-width: 768px) {
    #kvkk-consent-banner .kvkk-content {
        flex-direction: column;
        text-align: center;
    }
}