:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --text-color: #2c3e50;
    --festival-gold: #d4af37;
    --festival-dark: #1a1a2e;
    --festival-accent: #8b5a2b;
    --festival-light: #f5f1e8;
    --festival-purple: #6c3483;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8e0d5 100%);
    min-height: 100vh;
    color: var(--text-color);
}

/* Festival Navbar */
.festival-navbar {
    background: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    padding: 0.8rem 0 !important;
}

.festival-navbar .navbar-brand {
    font-weight: 700;
    color: var(--festival-dark) !important;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.festival-navbar .nav-link {
    color: var(--festival-dark) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.festival-navbar .nav-link:hover {
    color: var(--festival-gold) !important;
}

/* Festival Header */
.festival-header {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #6c3483 50%, #8b5a2b 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.festival-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,.05)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.festival-content {
    position: relative;
    z-index: 1;
}

.festival-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.festival-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Festival Card */
.festival-card {
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    border-top: 5px solid var(--festival-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

/* Festival Card Header */
.festival-header-card {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8e0d5 100%);
    border-bottom: 2px solid var(--festival-gold);
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
}

.festival-header-card h2 {
    color: var(--festival-dark);
    font-weight: 700;
    margin: 0;
}

.festival-header-card .small {
    color: var(--festival-accent);
}

.nlf-registration-wrapper {
    min-height: 100vh;
    padding-bottom: 3rem;
}

.text-gold {
    color: var(--festival-gold);
}

/* Section Header */
.section-header {
    border-bottom: 3px solid var(--festival-gold);
    padding-bottom: 0.8rem;
}

.section-header h5 {
    color: var(--festival-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.main-container {
    padding: 30px 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.header-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Festival Form Inputs */
.festival-input {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.festival-input:focus {
    border-color: var(--festival-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.festival-input.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.festival-input.is-invalid {
    border-color: #dc3545;
}

.festival-btn {
    background: linear-gradient(135deg, var(--festival-gold) 0%, #c99c1f 100%);
    color: var(--festival-dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.festival-btn:hover {
    background: linear-gradient(135deg, #c99c1f 0%, var(--festival-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--festival-dark);
}

.festival-btn:active {
    transform: translateY(0);
}

.form-label {
    color: var(--festival-dark);
    font-weight: 600;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label i {
    color: var(--festival-gold);
}

.filter-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.filter-header {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-header i {
    color: var(--secondary-color);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    display: block;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn-group-filter {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    border-radius: 6px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary-color);
    border: none;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: #95a5a6;
    border: none;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-success {
    background: #27ae60;
    border: none;
}

.btn-success:hover {
    background: #229954;
}

.data-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.data-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.results-info {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.table-responsive {
    border-radius: 6px;
    display: block;
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 600px;
}

.festival-table {
    margin-bottom: 0;
    width: 100%;
    border-collapse: collapse;
}

.festival-table thead th {
    background: linear-gradient(135deg, var(--festival-dark) 0%, var(--festival-accent) 100%);
    color: white;
    font-weight: 700;
    border: none;
    padding: 16px 12px;
    text-align: left;
    white-space: nowrap;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.festival-table tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid #ecf0f1;
    vertical-align: middle;
    font-size: 0.95rem;
}

.festival-table tbody tr {
    transition: all 0.3s ease;
}

.festival-table tbody tr:hover {
    background-color: #f9f8f6;
    box-shadow: inset 0 0 5px rgba(212, 175, 55, 0.1);
}

.session-row {
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
}

.session-row:hover {
    border-left-color: var(--festival-gold);
}

/* Column width classes */
.col-date {
    width: 120px;
    min-width: 120px;
}

.col-session {
    width: 150px;
    min-width: 120px;
}

.col-time {
    width: 90px;
    min-width: 80px;
}

.col-hall {
    width: 110px;
    min-width: 100px;
}

.col-topic {
    width: 140px;
    min-width: 120px;
}

.col-speakers {
    width: 160px;
    min-width: 120px;
}

.text-truncate-safe {
    display: inline-block;
    max-width: 100%;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.time-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1565c0;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.table-header-row {
    background: linear-gradient(135deg, var(--festival-dark) 0%, var(--festival-accent) 100%) !important;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    word-break: break-word;
    overflow-wrap: break-word;
}

.badge-date {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f0 100%);
    color: #0c5c7a;
    border-left: 3px solid #0c5c7a;
}

.badge-hall {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
    color: #8b6914;
    border-left: 3px solid #8b6914;
}

.no-data-message {
    color: #95a5a6;
    text-align: center;
    padding: 40px 20px;
    font-size: 1.1rem;
}

.no-data-message i {
    font-size: 2.5rem;
    color: #bdc3c7;
    display: block;
    margin-bottom: 10px;
}

.action-buttons {
    display: flex;
    gap: 5px;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.85rem;
}

.btn-info {
    background: #3498db;
    border: none;
}

.btn-info:hover {
    background: #2980b9;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.empty-state i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 1.1rem;
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 60px 40px;
    color: var(--secondary-color);
    border-radius: 6px;
}

.loading-spinner.active {
    display: block;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.loading-spinner p {
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    border: none;
    border-radius: 10px 10px 0 0;
}

.detail-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.detail-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.detail-value {
    color: #2c3e50;
    font-size: 1rem;
    word-break: break-word;
}

.no-data-message {
    color: #95a5a6;
    text-align: center;
    padding: 20px;
}

/* Custom Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    border-top: 2px solid #ecf0f1;
    border-radius: 8px;
    background: #f9f8f6;
    flex-wrap: wrap;
    gap: 20px;
}

.pagination-info {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.pagination-info span {
    color: var(--festival-gold);
    font-weight: 700;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-pagination {
    background: linear-gradient(135deg, var(--festival-dark) 0%, var(--festival-accent) 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-pagination:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--festival-accent) 0%, #6c3483 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-pagination:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-pagination i {
    font-size: 0.9rem;
}

.btn-pagination-prev,
.btn-pagination-next {
    min-width: 120px;
}

.page-number {
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    font-size: 0.95rem;
}

.page-number:hover {
    border-color: var(--festival-gold);
    color: var(--festival-dark);
    background: #fefdfb;
}

.page-number.active {
    background: linear-gradient(135deg, var(--festival-gold) 0%, #c99c1f 100%);
    color: var(--festival-dark);
    border-color: var(--festival-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.page-ellipsis {
    color: #95a5a6;
    font-weight: 600;
    padding: 0 4px;
}


/* Badge Styles - already defined above */

.category-badge {
    display: inline-block;
    background: var(--festival-gold);
    color: var(--festival-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Alert Messages */
.alert-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.alert-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid #28a745;
    color: #155724;
    border-radius: 8px;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid #dc3545;
    color: #721c24;
    border-radius: 8px;
}

.alert-info {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid #17a2b8;
    color: #0c5460;
    border-radius: 8px;
}

.text-danger {
    color: #dc3545;
}

/* Table Container and Data Wrapper */
.sessions-data-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
}

.table-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

#tableContainer {
    width: 100%;
    overflow: visible;
}

#tableContainer .table-responsive {
    border-radius: 0;
    width: 100%;
}

#tableContainer .festival-table {
    width: 100%;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    text-align: center;
    padding: 60px 40px;
    color: var(--festival-dark);
    border-radius: 8px;
}

.loading-spinner.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-spinner i {
    font-size: 3rem;
    color: var(--festival-gold);
    margin-bottom: 20px;
    animation: spin 1s linear infinite;
}

.loading-spinner p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--festival-dark);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pagination Container - Fixed Layout */
.pagination-container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
    gap: 20px;
    margin-top: 0;
    padding: 20px;
    border-top: 2px solid #ecf0f1;
    border-radius: 0 0 8px 8px;
    background: #f9f8f6;
    width: 100%;
    box-sizing: border-box;
}

.pagination-info-section {
    display: flex;
    align-items: center;
    justify-self: start;
}

#paginationInfo {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

#paginationInfo span {
    color: var(--festival-gold);
    font-weight: 700;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pagination-numbers {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-pagination {
    background: linear-gradient(135deg, var(--festival-dark) 0%, var(--festival-accent) 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    white-space: nowrap;
    min-height: 40px;
}

.btn-pagination:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--festival-accent) 0%, #6c3483 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-pagination:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-pagination i {
    font-size: 0.9rem;
}

.btn-pagination-prev,
.btn-pagination-next {
    padding: 10px 12px;
}

.page-number {
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
}

.page-number:hover {
    border-color: var(--festival-gold);
    color: var(--festival-dark);
    background: #fefdfb;
}

.page-number.active {
    background: linear-gradient(135deg, var(--festival-gold) 0%, #c99c1f 100%);
    color: var(--festival-dark);
    border-color: var(--festival-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.page-ellipsis {
    color: #95a5a6;
    font-weight: 600;
    padding: 0 4px;
}

@media (max-width: 1024px) {
    .col-date { width: 100px; min-width: 100px; }
    .col-session { width: 130px; min-width: 110px; }
    .col-time { width: 80px; min-width: 70px; }
    .col-hall { width: 100px; min-width: 90px; }
    .col-topic { width: 120px; min-width: 100px; }
    .col-speakers { width: 140px; min-width: 110px; }
    
    .festival-table tbody td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .festival-table thead th {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .pagination-container {
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
        gap: 15px;
        padding: 15px;
    }

    .pagination-info-section {
        width: 100%;
        justify-self: center;
        text-align: center;
    }

    #paginationInfo {
        display: block;
    }

    .pagination-controls {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        justify-self: center;
    }

    .pagination-numbers {
        justify-content: center;
        width: 100%;
    }

    .btn-pagination {
        width: 100%;
        justify-content: center;
    }

    .btn-pagination-prev,
    .btn-pagination-next {
        width: 100%;
    }

    .page-number {
        padding: 8px 10px;
        font-size: 0.85rem;
        min-width: 35px;
        width: auto;
    }

    .header-title {
        font-size: 1.8rem;
    }

    .festival-title {
        font-size: 2rem;
    }

    .festival-subtitle {
        font-size: 1rem;
    }

    .filter-row {
        grid-template-columns: 1fr;
    }

    .btn-group-filter {
        flex-direction: column;
    }

    .btn-group-filter .btn {
        width: 100%;
    }

    .data-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .table-responsive {
        overflow-x: auto;
    }

    .festival-table {
        font-size: 0.85rem;
    }

    .festival-table thead th,
    .festival-table tbody td {
        padding: 8px 6px;
    }

    .col-date { width: 80px; min-width: 80px; }
    .col-session { width: 100px; min-width: 90px; }
    .col-time { width: 65px; min-width: 60px; }
    .col-hall { width: 80px; min-width: 75px; }
    .col-topic { width: 100px; min-width: 85px; }
    .col-speakers { width: 110px; min-width: 90px; }

    .badge {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .time-badge {
        padding: 2px 6px;
        font-size: 0.8rem;
    }

    .text-truncate-safe {
        display: inline;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .festival-title {
        font-size: 1.5rem;
    }

    .festival-subtitle {
        font-size: 0.9rem;
    }

    .card-body {
        padding: 1rem !important;
    }

    .festival-header-card {
        padding: 1rem;
    }

    .festival-header-card h2 {
        font-size: 1.3rem;
    }

    .section-header h5 {
        font-size: 1rem;
    }

    .pagination-info {
        font-size: 0.9rem;
    }

    .btn-pagination {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .page-number {
        padding: 6px 8px;
        font-size: 0.8rem;
        min-width: 32px;
    }

    .no-data-message {
        padding: 30px 15px;
        font-size: 1rem;
    }

    .no-data-message i {
        font-size: 2rem;
    }

    .col-date { width: 70px; min-width: 70px; }
    .col-session { width: 80px; min-width: 75px; }
    .col-time { width: 55px; min-width: 50px; }
    .col-hall { width: 70px; min-width: 65px; }
    .col-topic { width: 80px; min-width: 75px; }
    .col-speakers { width: 90px; min-width: 80px; }

    .festival-table thead th,
    .festival-table tbody td {
        padding: 6px 4px;
        font-size: 0.8rem;
    }

    .badge {
        padding: 3px 6px;
        font-size: 0.75rem;
    }
}


