/* Erişilebilirlik Menüsü CSS */
.accessibility-menu {
    position: fixed;
    bottom: 10px;
    right: 90px;
    z-index: 9999;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: Arial, sans-serif;
    min-width: 250px;
}

.accessibility-menu.collapsed {
    width: 50px;
    height: 65px;
    padding: 10px;
    overflow: hidden;
}

.accessibility-toggle {
    background: #007bff;
    color: white;
    border: none;
    width: 100%;
    height: 45px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-content {
    margin-top: 10px;
}

.accessibility-menu.collapsed .accessibility-content {
    display: none;
}

.accessibility-menu h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.accessibility-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-group {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.control-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.control-group label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.control-buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.accessibility-btn {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 11px;
    border-radius: 4px;
    transition: all 0.2s;
}

.accessibility-btn:hover {
    background: #e9ecef;
}

.accessibility-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.accessibility-btn.reset {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.accessibility-btn.reset:hover {
    background: #c82333;
}

/* Kalın Yazı */
body.bold-text,
body.bold-text * {
    font-weight: bold !important;
}

/* Yüksek Kontrast Tema */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast *,
body.high-contrast a,
body.high-contrast p,
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast h5,
body.high-contrast h6 {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

body.high-contrast .btn,
body.high-contrast .form-control,
body.high-contrast .card {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

/* Sarı-Mavi Tema (Deuteranopia için) */
body.yellow-blue {
    background: #001122 !important;
    color: #ffff88 !important;
}

body.yellow-blue *,
body.yellow-blue a,
body.yellow-blue p,
body.yellow-blue h1,
body.yellow-blue h2,
body.yellow-blue h3,
body.yellow-blue h4,
body.yellow-blue h5,
body.yellow-blue h6 {
    background: #001122 !important;
    color: #ffff88 !important;
}

body.yellow-blue .btn {
    background: #0066cc !important;
    color: #ffff88 !important;
    border-color: #ffff88 !important;
}

/* Mavi-Beyaz Tema */
body.blue-white {
    background: #f0f8ff !important;
    color: #000080 !important;
}

body.blue-white *,
body.blue-white a,
body.blue-white p,
body.blue-white h1,
body.blue-white h2,
body.blue-white h3,
body.blue-Ahite h4,
body.blue-white h5,
body.blue-white h6 {
    background: #f0f8ff !important;
    color: #000080 !important;
}

body.blue-white .btn {
    background: #4169e1 !important;
    color: #ffffff !important;
    border-color: #000080 !important;
}

/* Kolay Okuma Fontu */
body.easy-read,
body.easy-read * {
    font-family: 'Arial', 'Helvetica', sans-serif !important;
    line-height: 1.6 !important;
    letter-spacing: 0.5px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .accessibility-menu {
        bottom: 15px;
        right: 5px;
        min-width: 200px;
        padding: 10px;
    }
    
    .accessibility-menu.collapsed {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
    
    .accessibility-toggle {
        width: 100%;
        height: 25px;
        font-size: 14px;
    }
}