/* Taban Stil */
.btn-base {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-base:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    color: #000000;
}
.btn-base:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Outline Temel */
.btn-outline {
    background-color: transparent;
    border: 2px solid;
}

/* Küçük Boyut */
.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}
/* Ekstra Küçük Boyut */
.btn-esm {
    padding: 4px 8px;
    font-size: 12px;
}

/* Pastel Renkli Butonlar */
/* Blue */
.btn-blue { background-color: #cce5ff; color: #004085; border: 2px solid #004085; }
.btn-blue:hover { background-color: #b8daff; }

/* Green */
.btn-green { background-color: #d4edda; color: #155724; border: 2px solid #155724; }
.btn-green:hover { background-color: #c3e6cb; }

/* Red */
.btn-red { background-color: #f8d7da; color: #721c24; border: 2px solid #721c24; }
.btn-red:hover { background-color: #f5c6cb; }

/* Orange */
.btn-orange { background-color: #ffe5b4; color: #cc7000; border: 2px solid #cc7000; }
.btn-orange:hover { background-color: #ffdb99; }

/* Purple */
.btn-purple { background-color: #e5d4f7; color: #4b2174; border: 2px solid #4b2174; }
.btn-purple:hover { background-color: #d9bdf2; }

/* Teal */
.btn-teal { background-color: #d1f2eb; color: #117864; border: 2px solid #117864; }
.btn-teal:hover { background-color: #a9e7da; }

/* Indigo */
.btn-indigo { background-color: #e0ccff; color: #4b0082; border: 2px solid #4b0082; }
.btn-indigo:hover { background-color: #d1b3ff; }

/* Yellow */
.btn-yellow { background-color: #fff3cd; color: #856404; border: 2px solid #856404; }
.btn-yellow:hover { background-color: #ffeeba; }

/* Dark */
.btn-dark { background-color: #e2e3e5; color: #1d2124; border: 2px solid #1d2124; }
.btn-dark:hover { background-color: #d6d8db; }

/* Gray */
.btn-gray { background-color: #f0f0f0; color: #4e555b; border: 2px solid #4e555b; }
.btn-gray:hover { background-color: #e0e0e0; }

/* Black */
.btn-black { background-color: #1d2124; color: #ffffff; border: 2px solid gray; }
.btn-black:hover { background-color: #0f1113;}

/* Kayıt Formu Stilleri */
.kayit-form-container {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* gölge */
    border-radius: 12px; /* köşeleri yuvarlat */
    padding: 2rem;
    margin-top: 30px;
}

.kayit-form-group {
    margin-bottom: 1rem;
}

.kayit-form-help-text {
    font-size: 14px;
    color: #999;
    margin-top: 0.25rem;
    font-style: italic;
    line-height: 1.3;
}

.kayit-form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.kayit-form-input,
.kayit-form-select,
.kayit-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e5e9;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* gölge */
    border-radius: 12px; /* köşeleri yuvarlat */
}

.kayit-form-input:focus,
.kayit-form-select:focus,
.kayit-form-textarea:focus {
    outline: none;
    border-color: #007bff;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.kayit-form-input::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.kayit-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.kayit-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kayit-form-col {
    flex: 1;
}

.kayit-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.kayit-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
}

.kayit-form-checkbox label {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.kayit-form-veli {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

/* Notlar ve Bilgilendirme Stilleri */
.kayit-form-notes {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 3px solid #007bff;
    text-align: left;
}

.note-section {
    margin-bottom: 0.75rem;
}

.note-section:last-child {
    margin-bottom: 0;
}

.note-section p {
    margin-bottom: 0.5rem;
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
}

.note-section p:last-child {
    margin-bottom: 0;
}

.note-section p strong {
    color: #495057;
    font-weight: 600;
}

.note-title {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-title i {
    font-size: 16px;
}

.note-content {
    padding-left: 0.75rem;
}

.note-text {
    margin-bottom: 0.5rem;
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.note-text:last-child {
    margin-bottom: 0;
}

.note-text i {
    margin-top: 0.1rem;
    font-size: 13px;
    min-width: 14px;
}

.note-text strong {
    color: #495057;
    font-weight: 600;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .kayit-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .kayit-form-col {
        margin-bottom: 1rem;
    }
    
    .kayit-form-notes {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .note-content {
        padding-left: 0.5rem;
    }
    
    .note-section p {
        font-size: 12px;
        margin-bottom: 0.4rem;
    }
}

/* KVKK Modal Stilleri */
.kvkk-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.kvkk-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kvkk-modal-content {
    background-color: white;
    margin: 20px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.kvkk-modal-close {
    position: fixed;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10000;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.kvkk-modal-close:hover {
    color: #333;
}

.kvkk-modal h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-right: 40px;
}

.kvkk-modal-body {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

.kvkk-modal-body h1,
.kvkk-modal-body h2,
.kvkk-modal-body h3,
.kvkk-modal-body h4,
.kvkk-modal-body h5,
.kvkk-modal-body h6 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.kvkk-modal-body ul,
.kvkk-modal-body ol {
    margin-bottom: 12px;
    padding-left: 20px;
}

.kvkk-modal-body li {
    margin-bottom: 5px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .kvkk-modal-content {
        margin: 10px;
        padding: 20px;
        max-height: 90vh;
    }
    
    .kvkk-modal h3 {
        font-size: 20px;
        padding-right: 30px;
    }
    
    .kvkk-modal-body {
        font-size: 13px;
    }
    
    .kvkk-modal-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}

