/*
  QURANIC INITIALS RESPONSIVE CSS - V3
  SMART BREAKPOINT SYSTEM:
  - Very small (320-480px): Card ONLY, no buttons
  - Medium (481-768px): User choice + buttons (tablet/landscape phone)
  - Large (769px+): Full desktop experience
*/

/* LARGE SCREENS: Full desktop experience */
@media (min-width: 769px) {
    .quranic-initials-table {
        width: 100% !important;
        border-collapse: collapse !important;
        border: 1px solid #e5e7eb !important;
        table-layout: fixed !important;
        display: table !important;
    }
    
    .quranic-initials-table th, 
    .quranic-initials-table td {
        border: 1px solid #e5e7eb !important;
        padding: 8px !important;
        font-size: 14px !important;
    }
    
    .quranic-initials-table thead th {
        background-color: #f9fafb !important;
        border-bottom: 2px solid #e5e7eb !important;
    }
    
    .quranic-initials-container {
        border-radius: 8px;
        border: 1px solid #e5e7eb;
    }
    
    /* Show toggle buttons */
    .view-toggle-container {
        display: flex !important;
    }
    
    /* Hide mobile note */
    .mobile-card-note {
        display: none !important;
    }
    
    /* Dark mode - Desktop */
    .dark .quranic-initials-table {
        border: 1px solid #374151 !important;
    }
    
    .dark .quranic-initials-table th,
    .dark .quranic-initials-table td {
        border: 1px solid #374151 !important;
    }
    
    .dark .quranic-initials-table thead th {
        background-color: #1f2937 !important;
        border-bottom: 2px solid #374151 !important;
    }
}

/* LANDSCAPE PHONE: Mobile landscape fix - WORKING SOLUTION */
@media (max-height: 500px) and (min-width: 640px) and (max-width: 950px) {
    
    /* Force table display first */
    .view-table,
    .quranic-initials-table,
    .quranic-initials-container .view-table,
    table.quranic-initials-table {
        display: table !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
    }
    
    /* Show toggle buttons for landscape */
    .view-toggle-container {
        display: flex !important;
    }
    
    /* PERFECT COLUMN DISTRIBUTION - Working inline CSS ported */
    .quranic-initials-table {
        width: 100% !important;
        table-layout: fixed !important;
        border-collapse: collapse !important;
        font-size: 9px !important;
        border: 1px solid #e5e7eb !important;
    }
    
    .quranic-initials-table th, 
    .quranic-initials-table td {
        border: 1px solid #e5e7eb !important;
        vertical-align: middle !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* BALANCED COLUMNS - Sure (12%) */
    .quranic-initials-table th:nth-child(1),
    .quranic-initials-table td:nth-child(1) {
        width: 12% !important;
        font-size: 8px !important;
        text-align: center !important;
        padding: 1px 2px !important;
    }
    
    /* BALANCED COLUMNS - Ayet (12%) */
    .quranic-initials-table th:nth-child(2),
    .quranic-initials-table td:nth-child(2) {
        width: 12% !important;
        font-size: 8px !important;
        text-align: center !important;
        padding: 1px 2px !important;
    }
    
    /* BALANCED COLUMNS - Arabic (48% controlled) */
    .quranic-initials-table th:nth-child(3),
    .quranic-initials-table td:nth-child(3) {
        width: 48% !important;
        font-size: 9px !important;
        direction: rtl !important;
        text-align: right !important;
        padding: 1px 3px !important;
        overflow: hidden !important;
        word-break: break-all !important;
    }
    
    /* BALANCED COLUMNS - Letter Count (14%) */
    .quranic-initials-table th:nth-child(4),
    .quranic-initials-table td:nth-child(4) {
        width: 14% !important;
        font-size: 8px !important;
        text-align: center !important;
        padding: 1px 2px !important;
    }
    
    /* BALANCED COLUMNS - Total (14% not huge) */
    .quranic-initials-table th:last-child,
    .quranic-initials-table td:last-child {
        width: 14% !important;
        font-size: 8px !important;
        text-align: center !important;
        padding: 1px 2px !important;
        font-weight: bold !important;
    }
    
    /* FORCE HORIZONTAL HEADERS - Critical fix */
    .quranic-initials-table thead th {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        transform: none !important;
        white-space: nowrap !important;
        font-size: 7px !important;
        padding: 1px !important;
        height: auto !important;
        vertical-align: middle !important;
        background-color: #f9fafb !important;
        border-bottom: 2px solid #e5e7eb !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Container scroll */
    .quranic-initials-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
    }
    
    /* Dark mode for landscape */
    .dark .quranic-initials-table {
        border: 1px solid #374151 !important;
    }
    
    .dark .quranic-initials-table th,
    .dark .quranic-initials-table td {
        border: 1px solid #374151 !important;
    }
    
    .dark .quranic-initials-table thead th {
        background-color: #1f2937 !important;
        border-bottom: 2px solid #374151 !important;
    }
}

/* TABLET + LANDSCAPE PHONE: Better responsive table */
@media (min-width: 481px) and (max-width: 1023px) and (min-height: 500px) {
    /* Improved table layout for tablets */
    .quranic-initials-table {
        width: 100% !important;
        border-collapse: collapse !important;
        border: 1px solid #e5e7eb !important;
        table-layout: fixed !important;
        font-size: 13px !important;
        min-width: 600px !important; /* Ensure minimum table width */
    }
    
    .quranic-initials-table th, 
    .quranic-initials-table td {
        border: 1px solid #e5e7eb !important;
        padding: 8px 6px !important;
        font-size: 12px !important;
        vertical-align: top !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Better column proportions for readability */
    .quranic-initials-table th:nth-child(1),
    .quranic-initials-table td:nth-child(1) {
        width: 8% !important; /* Sure */
        text-align: center !important;
        font-size: 11px !important;
    }
    
    .quranic-initials-table th:nth-child(2),
    .quranic-initials-table td:nth-child(2) {
        width: 8% !important; /* Ayet */
        text-align: center !important;
        font-size: 11px !important;
    }
    
    /* Arabic column - more space, better readability */
    .quranic-initials-table th:nth-child(3),
    .quranic-initials-table td:nth-child(3) {
        width: 50% !important; /* Increased for Arabic text */
        direction: rtl !important;
        text-align: right !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        white-space: normal !important;
        word-break: break-word !important;
        padding: 10px 8px !important;
    }
    
    /* Letter count column */
    .quranic-initials-table th:nth-child(4),
    .quranic-initials-table td:nth-child(4) {
        width: 12% !important; /* Letter count gets more space */
        text-align: center !important;
        font-size: 11px !important;
        white-space: nowrap !important;
    }
    
    /* Total column */
    .quranic-initials-table th:last-child,
    .quranic-initials-table td:last-child {
        width: 14% !important; /* Total gets more space */
        text-align: center !important;
        font-size: 11px !important;
        font-weight: bold !important;
        white-space: nowrap !important;
    }
    
    /* Add horizontal scroll if needed */
    .quranic-initials-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .quranic-initials-table thead th {
        background-color: #f9fafb !important;
        border-bottom: 2px solid #e5e7eb !important;
        font-size: 10px !important;
        font-weight: bold !important;
    }
    
    .quranic-initials-container {
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        overflow: hidden !important;
    }
    
    /* Show toggle buttons for tablets */
    .view-toggle-container {
        display: flex !important;
    }
    
    /* Show tablet note */
    .mobile-card-note {
        display: block !important;
        background-color: #f0f9ff;
        border: 1px solid #0ea5e9;
        border-radius: 8px;
        padding: 8px 12px;
        margin-bottom: 16px;
        font-size: 12px;
        color: #0c4a6e;
        text-align: center;
    }
    
    .dark .mobile-card-note {
        background-color: #1e3a8a;
        border-color: #3b82f6;
        color: #dbeafe;
    }
    
    /* Dark mode - Medium */
    .dark .quranic-initials-table {
        border: 1px solid #374151 !important;
    }
    
    .dark .quranic-initials-table th,
    .dark .quranic-initials-table td {
        border: 1px solid #374151 !important;
    }
    
    .dark .quranic-initials-table thead th {
        background-color: #1f2937 !important;
        border-bottom: 2px solid #374151 !important;
    }
}

/* SMALL SCREENS: Phone Portrait - ULTRA AGGRESSIVE CARD ONLY */
@media (max-width: 640px) {
    /* ULTRA AGGRESSIVE: Tüm table elementlerini yok et */
    .view-table,
    .quranic-initials-table,
    .quranic-initials-container .view-table,
    table.quranic-initials-table,
    .table-container .view-table {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* ULTRA AGGRESSIVE: Card view zorunlu */
    .view-cards,
    .quranic-initials-container .view-cards,
    .table-container .view-cards {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
    }
    
    /* ULTRA AGGRESSIVE: Toggle butonlarını yok et */
    .view-toggle-container,
    .view-toggle,
    #view-toggle,
    .table-toggle,
    .btn-toggle,
    button[onclick*="toggleView"],
    .toggle-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        pointer-events: none !important;
    }
    
    /* Small screen explanation */
    .mobile-card-note {
        display: block !important;
        background-color: #f0f9ff;
        border: 1px solid #0ea5e9;
        border-radius: 8px;
        padding: 8px 12px;
        margin-bottom: 16px;
        font-size: 12px;
        color: #0c4a6e;
        text-align: center;
    }
    
    .dark .mobile-card-note {
        background-color: #1e3a8a;
        border-color: #3b82f6;
        color: #dbeafe;
    }
}

/* VERY SMALL SCREENS: Phone Portrait - DOUBLE SECURITY */
@media (max-width: 480px) {
    /* İkinci katman güvenlik */
    * .view-table,
    * .quranic-initials-table,
    * table {
        display: none !important;
    }
    
    * .view-cards {
        display: block !important;
    }
    
    * .view-toggle-container,
    * .view-toggle,
    * #view-toggle {
        display: none !important;
    }
}