﻿/* ==================== VARIABLES ==================== */
:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #22c55e;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #0ea5e9;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --font-family: 'Inter', sans-serif;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(270deg, #2eb1d8 0%, #0d6cb4 100%);
    min-height: 100vh;
    padding: 20px 0;
    line-height: 1.6;
}

/* ==================== HEADER ==================== */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-radius: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.btn-header {
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

/* ==================== MAIN CONTAINERS ==================== */
.main-container, .form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    margin-bottom: 2rem;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* ==================== PROGRESS BAR ==================== */
.progress-container {
    margin-bottom: 3rem;
}

.progress {
    height: 8px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.5s ease;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.step-indicator.active .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.step-indicator.completed .step-number {
    background: var(--success-color);
    color: white;
    border-color: transparent;
}

.step-label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.step-indicator.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== FORM STEPS ==================== */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ==================== FORM SECTIONS ==================== */
.form-section {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.form-section:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== FORM CONTROLS ==================== */
.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label .required {
    color: var(--danger-color);
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

/* ==================== ALERTS ==================== */
.alert-custom {
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: none;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
}

.alert-closed {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}
#lblsonuc {
    display: block !important;
    position: relative !important;
    z-index: 9999 !important;
    background: #f8d7da !important;
    color: #721c24 !important;
    line-height: 2 !important;
    padding: 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3) !important;
}
/* ==================== BUTTONS ==================== */
.btn-nav {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    min-width: 120px;
    justify-content: center;
}

.btn-prev {
    background: var(--secondary-color);
    color: white;
}

.btn-prev:hover {
    background: #475569;
    transform: translateX(-5px);
}

.btn-next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-next:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Submit button for basvuru.aspx (navigation style) */
.btn-nav.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    min-width: 150px;
    justify-content: center;
}

.btn-nav.btn-submit:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Submit button for Default.aspx (main CTA style) */
.btn-submit:not(.btn-nav) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem auto 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    min-width: 200px;
    justify-content: center;
}

.btn-submit:not(.btn-nav):hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-submit:not(.btn-nav):disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pulse:not(.btn-nav) {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

/* ==================== NAVIGATION ==================== */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

/* ==================== SPECIAL SECTIONS ==================== */
.anne-section, .baba-section {
    display: block;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1rem;
    animation: slideDown 0.3s ease;
}

.anne-section.gizle, .baba-section.gizle {
    display: none;
}

.velayet-section, .isyeri-section {
    display: none;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1rem;
    border: 2px solid #fbbf24;
    animation: slideDown 0.3s ease;
}

.velayet-section.show, .isyeri-section.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

/* ==================== UPLOAD CARDS ==================== */
.upload-card {
    background: white;
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.upload-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.upload-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-icon i {
    font-size: 1.5rem;
    color: white;
}

.upload-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.upload-info {
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.upload-area {
    position: relative;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.file-upload-control {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    left: 0;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 1rem;
}

.upload-label i {
    font-size: 2rem;
}

.file-info {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.file-info.success {
    color: var(--success-color);
    background: #f0fdf4;
}

.file-info.error {
    color: var(--danger-color);
    background: #fef2f2;
}

/* ==================== REQUIREMENTS ==================== */
.requirements-card {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid #60a5fa;
}

.requirements-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--dark-color);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ==================== CHECKBOXES ==================== */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-radius: var(--border-radius);
    border: 2px solid #fbbf24;
    transition: var(--transition);
}

.custom-checkbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.custom-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.custom-checkbox label {
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    flex: 1;
}

/* ==================== KVKK LINKS ==================== */
.kvkk-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.kvkk-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.kvkk-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.kvkk-link i {
    font-size: 0.875rem;
}

/* ==================== LOADER ==================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 150px;
    height: 150px;
    position: relative;
}

.loader-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    animation: loaderAnimation 1.5s infinite ease-in-out;
}

.loader-circle:nth-child(1) {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.loader-circle:nth-child(2) {
    top: 20px;
    right: 20px;
    animation-delay: 0.2s;
}

.loader-circle:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.4s;
}

.loader-shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    filter: blur(5px);
    animation: shadowAnimation 1.5s infinite ease-in-out;
}

.loader-shadow:nth-child(4) {
    top: 30px;
    left: 20px;
    animation-delay: 0s;
}

.loader-shadow:nth-child(5) {
    top: 30px;
    right: 20px;
    animation-delay: 0.2s;
}

.loader-shadow:nth-child(6) {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.4s;
}

.loader-text {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes loaderAnimation {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.3) translateY(-30px);
    }
}

@keyframes shadowAnimation {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* ==================== SUCCESS CONTAINER ==================== */
.success-container {
    text-align: center;
    padding: 3rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.success-message {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* ==================== FOOTER ==================== */
footer {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-5px);
}

/* ==================== MODAL ==================== */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.modal-header .btn-close {
    color: white;
    opacity: 0.8;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
}

/* ==================== CHARACTER COUNTER ==================== */
.karakter-sayaci-label,
.karakter-sayaci-inline {
    display: inline-block;
    font-size: 0.85em;
    font-weight: normal;
    transition: var(--transition);
    vertical-align: middle;
}

.karakter-sayaci-label.danger,
.karakter-sayaci-inline.danger {
    animation: pulse 0.5s ease-in-out infinite;
}

.form-label:hover .karakter-sayaci-inline {
    font-weight: bold;
}

.form-label .required + .karakter-sayaci-inline {
    margin-left: 5px;
}

/* ==================== INPUT GROUPS ==================== */
.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    z-index: 1;
}

.input-with-icon {
    padding-left: 2.75rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .main-container, .form-container {
        padding: 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .btn-submit:not(.btn-nav) {
        width: 100%;
        justify-content: center;
    }

    .step-label {
        display: none;
    }

    .navigation-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }

    .logo {
        font-size: 1.1rem;
        gap: 5px;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .btn-header {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .karakter-sayaci-label,
    .karakter-sayaci-inline {
        display: block;
        margin-left: 0;
        margin-top: 2px;
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 0.75rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn-header {
        padding: 0.5rem;
    }
}
/* Velayet ve aile bölümleri için başlangıç stilleri */
.velayet-section {
    display: none; /* Varsayılan olarak gizli */
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.velayet-section.show {
    display: block;
}

/* Anne ve baba bölümleri için dinamik görünürlük */
.anne-section,
.baba-section {
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.anne-section.hidden,
.baba-section.hidden {
    display: none;
}

/* İşyeri bölümü */
.isyeri-section {
    display: none;
    transition: all 0.3s ease;
}

.isyeri-section.show {
    display: block;
}

/* Form section hover efekti */
.form-section:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Zorunlu alan işareti */
.required {
    color: #dc3545;
    font-weight: bold;
    margin-left: 3px;
}

/* Disabled sections */
.form-section.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .velayet-section {
        padding: 15px;
        margin-top: 15px;
    }
}
/* Uyumluluk Uyarısı Stilleri - app-styles.css'e eklenecek */

.compatibility-warning {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.warning-content {
    padding: 20px;
    position: relative;
}

.warning-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #856404;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.warning-close:hover {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.warning-content h4 {
    color: #856404;
    margin: 0 0 10px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-content h4 i {
    color: #ffc107;
}

.warning-content ul {
    margin: 0;
    padding-left: 20px;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.warning-content li {
    margin-bottom: 5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .compatibility-warning {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}