/* Reset and Base */
.ahms-search-container {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-default;
    direction: rtl;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 0px;
}

/* White Header Background */
.ahms-header {
    background: #ffffff; /* Changed to white */
    padding: 50px 0 30px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    position: relative;
    z-index: 1;
}

.main-heading {
    font-family: 'default', default;
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b; /* Dark color for contrast on white */
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.sub-heading {
    font-family: 'default', default;
    font-size: 1.2rem;
    color: #475569; /* Slightly lighter color */
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.header-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Search Wrapper */
.search-wrapper {
    margin: 30px 0 40px;
}

/* Translation Selection */
.translation-selection {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.translation-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    user-select: none;
}

.radio-label:hover {
    background: rgba(59, 130, 246, 0.05);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #94a3b8;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #3b82f6;
    background: #3b82f6;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    font-family: 'default', default;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.radio-label input[type="radio"]:checked ~ .radio-text {
    color: #3b82f6;
    font-weight: 600;
}

/* Search Instructions Box */
.search-instructions {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 2px solid #bae6fd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.instructions-title {
    font-family: 'default', default;
    font-size: 1.2rem;
    color: #0369a1;
    margin: 0 0 12px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instructions-title svg {
    width: 20px;
    height: 20px;
    color: #0284c7;
}

.instructions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instructions-list li {
    font-family: 'default', default;
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 8px;
    padding-right: 25px;
    position: relative;
    line-height: 1.6;
}

.instructions-list li:last-child {
    margin-bottom: 0;
}

.instructions-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #059669;
    font-weight: bold;
}

.instructions-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #bae6fd;
    font-family: 'default', default;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    line-height: 1.5;
}

/* Search Form Container */
.search-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255,255,255,0.9),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* UNIFIED SEARCH BOX STYLES - ALL ELEMENTS USE THESE */
.search-box-base {
    width: 100%;
    height: 56px;
    padding: 0 15px;
    font-size: 0.95rem;
    border: 2px solid #000000; /* Black border */
    border-radius: 10px;
    font-family: 'default', default;
    background: white; /* White background */
    color: #1e293b;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.search-box-base:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-box-base:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #f8fafc;
}

/* Primary Search Box - FIRST ROW (Full width) */
.primary-search-box {
    margin-bottom: 25px;
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #000000; /* Black border */
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 100%;
}

.search-input-wrapper:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon-box {
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white; /* White background */
    height: 56px;
    width: 56px;
    flex-shrink: 0;
    border-right: 2px solid #000000; /* Black border */
}

.search-icon-box svg {
    width: 22px;
    height: 22px;
    color: #6b7280; /* Grey icon color */
    stroke-width: 2;
}

.primary-search-input {
    flex: 1;
    padding: 15px;
    font-size: 1rem;
    border: none;
    outline: none;
    font-family: 'default', default;
    background: transparent;
    height: 56px;
    box-sizing: border-box;
    color: #1e293b;
    width: 100%;
}

.primary-search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Advanced Filters - SECOND ROW (Matches first row width) */
.advanced-filters {
    margin-top: 20px;
    width: 100%;
}

/* Grid layout for equal width distribution */
.filter-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr 1fr; /* Collection, Book, Chapter get 2fr each, Hadith Number and Buttons get 1fr each */
    gap: 15px;
    align-items: center;
    width: 100%;
}

.filter-group {
    position: relative;
    width: 100%;
}

/* All filter elements use the unified base style */
.filter-select {
    width: 100%;
    height: 56px;
    padding: 0 35px 0 15px;
    font-size: 0.95rem;
    border: 2px solid #000000; /* Black border */
    border-radius: 10px;
    font-family: 'default', default;
    background: white; /* White background */
    color: #1e293b;
    box-sizing: border-box;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
}

.filter-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-select:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #f8fafc;
}

.hadith-number-input {
    width: 100%;
    height: 56px;
    padding: 0 15px;
    font-size: 0.95rem;
    border: 2px solid #000000; /* Black border */
    border-radius: 10px;
    font-family: 'default', default;
    background: white; /* White background */
    color: #1e293b;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-align: center;
}

.hadith-number-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Dropdown arrow for select boxes only - NOT for search/reset buttons */
.filter-group:not(.action-buttons-group)::after {
    content: '▼';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280; /* Grey color */
    pointer-events: none;
    font-size: 0.8rem;
}

/* Action buttons group - NO ARROWS */
.action-buttons-group {
    display: flex;
    gap: 15px;
    width: 100%;
}

.search-action-btn {
    flex: 1;
    height: 56px;
    padding: 0;
    font-size: 0.95rem;
    border: 2px solid #000000; /* Black border */
    border-radius: 10px;
    font-family: 'default', default;
    background: white; /* White background */
    color: #1e293b;
    box-sizing: border-box;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-width: 0;
}

.search-action-btn svg {
    width: 22px;
    height: 22px;
    color: #6b7280; /* Grey icon color */
    stroke-width: 2;
    transition: all 0.3s ease;
}

.search-action-btn:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-action-btn:hover svg {
    color: #3b82f6; /* Blue on hover */
}

.search-reset-btn:hover {
    border-color: #ef4444;
}

.search-reset-btn:hover svg {
    color: #ef4444; /* Red on hover */
}

/* Ensure ALL boxes have exactly the same height */
.search-input-wrapper,
.filter-select,
.hadith-number-input,
.search-action-btn {
    height: 56px;
    min-height: 56px;
}

/* Results Container */
.ahms-results-container {
    margin: 40px 0;
    min-height: 500px;
}

/* Collection Info */
.collection-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.06),
        0 0 0 1px rgba(226, 232, 240, 0.5);
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.collection-title {
    font-family: 'default', default;
    font-size: 1.8rem;
    color: #1e293b;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.3;
}

.book-info {
    font-family: 'default', default;
    font-size: 1rem;
    color: #475569;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.translation-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.indicator-icon {
    font-size: 1rem;
}

.indicator-text {
    font-family: 'default', default;
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: 600;
}

/* Chapter Section */
.chapter-section {
    margin-bottom: 30px;
}

.chapter-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.chapter-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chapter-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.chapter-title {
    font-family: 'default', default;
    font-size: 1.3rem;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
    flex: 1;
}

/* Hadith Cards Grid */
.hadiths-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Hadith Card Design - Two Columns, One Row */
.hadith-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 0 0 1px rgba(226, 232, 240, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.hadith-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 0 0 1px rgba(59, 130, 246, 0.3);
}

.hadith-card-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.hadith-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hadith-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'default', default;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

.hadith-meta svg {
    width: 14px;
    height: 14px;
    color: #64748b;
    flex-shrink: 0;
}

.meta-collection, .meta-book, .meta-number {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.meta-grade {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-default;
}

.grade-sahih {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.grade-hasan {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.grade-daif {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.grade-mawdu {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
}

/* Two Column Layout - One Row */
.hadith-card-body.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 300px;
}

.column {
    padding: 20px;
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
}

.column:last-child {
    border-right: none;
}

.arabic-column {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.translation-column {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
}

.column-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.label-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-default;
    font-weight: 700;
    font-size: 0.9rem;
}

.label-text {
    font-family: 'default', default;
    font-size: 1rem;
    color: #334155;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.column-content {
    flex: 1;
    overflow-y: auto;
    padding: 5px;
}

/* Text Justification */
.arabic-text {
    font-family: 'Noto Naskh Arabic', default;
    font-size: 1.3rem;
    line-height: 2;
    color: #1e293b;
    text-align: justify; /* Justified text */
    font-weight: 600;
    direction: rtl;
    text-align-last: right;
}

/* Translation text styles */
.translation-text.urdu {
    font-family: 'default', default;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    direction: rtl;
    text-align: justify; /* Justified text */
    text-align-last: right;
}

.translation-text.english {
    font-family: 'Poppins', sans-default;
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    direction: ltr; /* Left to right */
    text-align: justify; /* Justified text */
    text-align-last: left;
}

/* Dual translation sections */
.dual-translation {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.translation-section {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.translation-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.section-title {
    font-family: 'default', default;
    font-size: 0.95rem;
    color: #3b82f6;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.section-content {
    font-family: 'default', default;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    direction: rtl;
    text-align: justify; /* Justified text */
    text-align-last: right;
}

.english-section .section-title {
    font-family: 'Poppins', sans-default;
}

.english-section .section-content {
    font-family: 'Poppins', sans-default;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    direction: ltr; /* Left to right */
    text-align: justify; /* Justified text */
    text-align-last: left;
}

.no-translation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: #94a3b8;
    font-family: 'default', default;
    font-size: 0.9rem;
    text-align: center;
    height: 100%;
}

.no-translation svg {
    width: 30px;
    height: 30px;
    color: #cbd5e1;
}

/* Card Footer */
.hadith-card-footer {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    gap: 6px;
    font-family: 'default', default;
    font-size: 0.85rem;
}

.footer-label {
    color: #64748b;
    font-weight: 700;
    min-width: 45px;
}

.footer-value {
    color: #334155;
    font-weight: 500;
}

.footer-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 8px;
    font-family: 'default', default;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 80px;
    justify-content: center;
}

.copy-btn {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
    border: 2px solid #c7d2fe;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 100%);
    transform: translateY(-2px);
}

.share-btn {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0ea5e9;
    border: 2px solid #e0f2fe;
}

.share-btn:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    transform: translateY(-2px);
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

.btn-text {
    font-size: 0.8rem;
}

/* No Collection Message */
.no-collection-message, .no-results-message {
    text-align: center;
    padding: 70px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.06),
        0 0 0 1px rgba(226, 232, 240, 0.5);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.message-icon, .no-results-icon {
    margin-bottom: 30px;
}

.message-icon svg {
    width: 50px;
    height: 50px;
    color: #3b82f6;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.2));
}

.no-results-icon svg {
    width: 50px;
    height: 50px;
    color: #cbd5e1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.05));
}

.no-collection-message h3, .no-results-message h3 {
    font-family: 'default', default;
    font-size: 1.8rem;
    color: #475569;
    margin-bottom: 15px;
    font-weight: 700;
}

.no-collection-message p, .no-results-message p {
    font-family: 'default', default;
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1300px) {
    .filter-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .action-buttons-group {
        grid-column: span 2;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .sub-heading {
        font-size: 1.1rem;
    }
    
    .hadith-card-body.two-column-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .column {
        border-right: none;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }
    
    .column:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .ahms-header {
        padding: 40px 0 25px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .sub-heading {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .search-form-container {
        padding: 25px;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* All search elements adjust to mobile - same height */
    .search-input-wrapper,
    .filter-select,
    .hadith-number-input,
    .search-action-btn,
    .primary-search-input,
    .search-icon-box {
        height: 52px;
        min-height: 52px;
    }
    
    .search-icon-box {
        width: 52px;
    }
    
    .action-buttons-group {
        grid-column: span 1;
        justify-content: center;
        margin-top: 10px;
    }
    
    .search-action-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .primary-search-input {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .filter-select, .hadith-number-input {
        font-size: 0.9rem;
    }
    
    .instructions-title {
        font-size: 1.1rem;
    }
    
    .instructions-list li {
        font-size: 0.9rem;
    }
    
    .translation-options {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .radio-label {
        width: 100%;
    }
    
    .arabic-text {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    .translation-text.urdu {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .translation-text.english {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hadith-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .footer-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    .action-btn .btn-text {
        display: none;
    }
    
    .action-btn {
        min-width: 40px;
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.8rem;
    }
    
    .sub-heading {
        font-size: 0.9rem;
    }
    
    .arabic-text {
        font-size: 1.1rem;
    }
    
    .translation-text.urdu {
        font-size: 0.95rem;
    }
    
    .translation-text.english {
        font-size: 0.9rem;
    }
}