
/* أنماط مخصصة لصفحة الرواة */
.narrators-table {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.table-header {
    background: var(--theme-color);
    color: white;
    padding: 20px 30px;
}

.table-header h3 {
    margin: 0;
    font-size: 22px;
    color: white;
}

.table-search {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: #f8f9fa;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-right: 50px;
    border-radius: 50px;
    border: 2px solid #eee;
}

.search-box .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.table-responsive {
    padding: 0;
}

.table {
    margin: 0;
}

.table thead th {
    background: #f8f9fa;
    border-bottom: 2px solid var(--theme-color);
    font-weight: 600;
    color: var(--title-color);
    padding: 15px 20px;
    white-space: nowrap;
}

.table tbody td {
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.table tbody tr:hover {
    background-color: rgba(62, 102, 243, 0.03);
}

.narrator-name {
    font-weight: 600;
    color: var(--title-color);
}

.narrator-class {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.class-sahabi {
    background: #e8f5e9;
    color: #2e7d32;
}

.class-tabiin {
    background: #e3f2fd;
    color: #1565c0;
}

.class-tabi-tabiin {
    background: #f3e5f5;
    color: #7b1fa2;
}

.rating-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.rating-excellent {
    background: #e8f5e9;
    color: #2e7d32;
}

.rating-good {
    background: #fff3e0;
    color: #ef6c00;
}

.rating-average {
    background: #fff8e1;
    color: #f9a825;
}

.view-details {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-details:hover {
    color: var(--title-color);
}

.pagination-area {
    padding: 20px 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #f8f9fa;
}

.page-item.active .page-link {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.page-link {
    color: var(--theme-color);
    border-radius: 8px;
    margin: 0 3px;
    border: 1px solid #ddd;
}

.page-link:hover {
    color: var(--title-color);
    background-color: #f8f9fa;
}

/* Modal الأنماط */
.narrator-modal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--theme-color);
    color: white;
    border-bottom: none;
    padding: 25px 30px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.narrator-info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.narrator-info-card h4 {
    color: var(--title-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--theme-color);
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--theme-color);
    margin-left: 10px;
    margin-top: 3px;
}

.nav-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--body-color);
    font-weight: 500;
    padding: 12px 25px;
    margin: 0 5px;
    border-radius: 10px 10px 0 0;
}

.nav-tabs .nav-link.active {
    background: var(--theme-color);
    color: white;
}

.tab-pane {
    padding: 20px 0;
}

.quote-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-right: 4px solid var(--theme-color);
}

.quote-card:last-child {
    margin-bottom: 0;
}

.quote-author {
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.quote-text {
    color: var(--body-color);
    font-style: italic;
    margin-bottom: 0;
}

.narration-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.narration-list li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.narration-list li:hover {
    background: #f8f9fa;
}

.narration-list li:last-child {
    border-bottom: none;
}

.narration-text {
    color: var(--body-color);
    margin-bottom: 5px;
}

.narration-meta {
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    .table-responsive {
        font-size: 14px;
    }
    
    .table thead th,
    .table tbody td {
        padding: 12px 15px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.space {
  padding-top: 0;
}
