
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}


.kvkk-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.kvkk-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.kvkk-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.kvkk-modal-footer {
    margin-top: 15px;
    text-align: right;
}
.kvkk-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.kvkk-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.kvkk-link {
    font-size: 14px;
    line-height: 1.4;
}
.kvkk-content h3 {
    font-size: 22px;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.kvkk-content h5 {
    font-size: 18px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.kvkk-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.kvkk-content p {
    margin-bottom: 12px;
}

.kvkk-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
    padding-left: 15px;
}

.kvkk-content ul li {
    margin-bottom: 6px;
}

.kvkk-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}

.kvkk-content table th {
    background: #f5f5f5;
    color: #333;
    padding: 10px;
    border: 1px solid #ddd;
    font-weight: 600;
    text-align: left;
}

.kvkk-content table td {
    padding: 10px;
    border: 1px solid #ddd;
}
.kvkk-content a {
    color: #007bff;
    text-decoration: none;
}

.kvkk-content a:hover {
    text-decoration: underline;
}

.kvkk-content::-webkit-scrollbar {
    width: 8px;
}
.kvkk-content::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}
.kvkk-content::-webkit-scrollbar-thumb:hover {
    background: #999;
}
