/* Man Ki Baat Data Collection System - Styles */

:root {
    --primary-color: #0d6efd;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --orange-color: #ff6b35;
    --orange-dark: #e55a2b;
    --green-color: #90ee90;
    --green-light: #d4f4dd;
    --dark-gray: #333333;
    --cream-bg: #faf9f6;
}

/* Homepage Body */
.homepage-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cream-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Gradient */
.header-gradient {
    background: linear-gradient(90deg, var(--orange-color) 0%, var(--green-color) 100%);
    width: 100%;
}

.header-flag-icon {
    color: var(--orange-color);
    font-size: 1.5rem;
    margin-right: 10px;
}

.header-text {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px 0;
    position: relative;
    overflow: visible;
    min-height: calc(100vh - 200px);
}

/* Background Images */
.background-image-left,
.background-image-right {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 400px;
    min-height: 100vh;
    height: 100vh;
    z-index: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    pointer-events: none;
}

.background-image-left {
    left: 0;
    background-image: url('../images/background-left.png');
    background-position: left center;
}

.background-image-right {
    right: 0;
    background-image: url('../images/background-left.png');
    background-position: right center;
    transform: scaleX(-1); /* Mirror the image for right side */
}

/* Responsive adjustments for background images */
@media (max-width: 1200px) {
    .background-image-left,
    .background-image-right {
        width: 250px;
        opacity: 0.25;
    }
}

@media (max-width: 768px) {
    .background-image-left,
    .background-image-right {
        width: 150px;
        opacity: 0.2;
    }
}

/* Ensure content is above background */
.main-content .container {
    position: relative;
    z-index: 1;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* LAC Selection Card */
.lac-selection-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 40px 30px;
    margin: 20px 0;
}

.select-lac-text {
    font-size: 1.3rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0;
}

/* LAC Buttons */
.lac-btn {
    border: none;
    border-radius: 12px;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.lac-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.lac-btn:active {
    transform: translateY(-1px);
}

.lac-btn i {
    font-size: 1.3rem;
}

.lac-btn-dhemaji {
    background: var(--orange-color);
}

.lac-btn-dhemaji:hover {
    background: var(--orange-dark);
}

.lac-btn-sisiborgaon {
    background: var(--success-color);
}

.lac-btn-sisiborgaon:hover {
    background: #157347;
}

.lac-btn-jonai {
    background: var(--orange-color);
}

.lac-btn-jonai:hover {
    background: var(--orange-dark);
}

/* Slogan Box */
.slogan-box {
    border: 3px solid var(--orange-color);
    background: var(--green-light);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.slogan-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0;
}

/* Admin Panel Button */
.admin-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-gray);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.admin-panel-btn:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-decoration: none;
}

.admin-panel-btn i {
    font-size: 1.2rem;
}

/* Footer */
.footer-orange {
    background: var(--orange-color);
    width: 100%;
    margin-top: auto;
}

.footer-text {
    color: white;
    margin: 0;
    font-size: 0.95rem;
}

/* Form Modal Styles */
.form-modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-back-link {
    padding: 15px 20px 0;
}

.back-home-link {
    color: var(--orange-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.back-home-link:hover {
    color: var(--orange-dark);
    text-decoration: none;
}

.back-home-link i {
    font-size: 1.2rem;
}

.form-modal-body {
    padding: 20px 40px 40px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-color);
    margin-bottom: 30px;
    text-align: left;
}

/* Form Input Styles */
.form-label-custom {
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
}

.form-control-custom,
.form-select-custom {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control-custom:focus,
.form-select-custom:focus {
    outline: none;
    border-color: var(--orange-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control-custom::placeholder {
    color: #999;
}

.form-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Guest Input Fields */
.guest-input-wrapper {
    margin-bottom: 10px;
}

.guest-input {
    margin-bottom: 0;
}

.add-more-link {
    color: var(--success-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 5px;
}

.add-more-link:hover {
    color: #157347;
    text-decoration: underline;
}

/* Image Upload Boxes */
.image-upload-box {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fafafa;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-upload-box:hover {
    border-color: var(--orange-color);
    background-color: #fff5f2;
}

.upload-placeholder {
    width: 100%;
}

.upload-icon {
    font-size: 3rem;
    color: #999;
    margin-bottom: 10px;
}

.upload-text {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.upload-preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.upload-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.remove-image-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--danger-color);
    transition: all 0.3s ease;
}

.remove-image-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Submit Button */
.btn-submit-form {
    background: linear-gradient(90deg, var(--orange-color) 0%, var(--success-color) 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

.btn-submit-form:active {
    transform: translateY(0);
}

.btn-submit-form:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Styles */
.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.form-label {
    font-weight: 500;
    color: #495057;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Image Preview */
.image-preview {
    max-width: 200px;
    max-height: 200px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 5px;
    margin-top: 10px;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Skeleton Loader */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 1.5rem;
    width: 60%;
    margin-bottom: 1rem;
}

/* Admin Dashboard */
.stat-card {
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.progress {
    height: 25px;
    border-radius: 10px;
}

.progress-bar {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Table Styles */
.table-responsive {
    border-radius: 8px;
}

.table thead {
    background-color: var(--primary-color);
    color: white;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Image Modal */
.modal-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Badge Styles */
.badge {
    padding: 0.5em 0.75em;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .lac-selection-card {
        padding: 30px 20px;
    }
    
    .lac-btn {
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .card {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .lac-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Toast Styles */
.toast {
    min-width: 300px;
}

.toast.show {
    display: block;
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Admin Dashboard Styles */
.admin-body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.admin-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Admin Navigation */
.admin-nav {
    background: white;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e0e0e0;
}

.nav-left {
    display: flex;
    gap: 0;
}

.nav-right {
    padding-right: 20px;
}

.nav-item {
    padding: 15px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-item:hover {
    color: #666;
    background-color: #f9f9f9;
}

.nav-item.active {
    color: var(--orange-color);
    border-bottom-color: var(--orange-color);
    background-color: #fff5f2;
}

.nav-item i {
    font-size: 1.2rem;
}

/* Export Dropdown */
.export-dropdown {
    position: relative;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--orange-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.export-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.export-btn i:last-child {
    font-size: 0.8rem;
    margin-left: 5px;
}

.export-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
}

.export-menu.show {
    display: block;
}

.export-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.export-item:last-child {
    border-bottom: none;
}

.export-item:hover {
    background: #f9f9f9;
    color: var(--orange-color);
    text-decoration: none;
}

.export-item i {
    color: var(--orange-color);
    font-size: 1.1rem;
}

/* Admin Content */
.admin-content {
    flex: 1;
    padding: 30px;
    background-color: #f5f5f5;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Dashboard Card */
.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.stat-card-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.stat-card-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

.stat-card-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.stat-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* LAC Analytics Section */
.lac-analytics-section {
    margin-top: 40px;
}

.lac-analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.lac-analytics-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.lac-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.lac-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.lac-badge {
    background: var(--orange-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.lac-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.lac-progress-bar {
    flex: 1;
    height: 25px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lac-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange-color) 0%, var(--success-color) 100%);
    border-radius: 12px;
    transition: width 0.5s ease;
}

.lac-percentage {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    min-width: 50px;
    text-align: right;
}

.lac-stats {
    display: flex;
    gap: 20px;
}

.lac-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lac-stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.lac-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
}

/* Card Header Custom */
.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.card-header-custom h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.badge-custom {
    background: var(--orange-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: #f5f5f5;
}

.data-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
    border-bottom: 2px solid #e0e0e0;
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.data-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Admin Tabs */
.nav-tabs .nav-link {
    color: #495057;
    border: none;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link:hover {
    border-bottom-color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: transparent;
}

/* Unsubmitted Stations Styles */
.unsubmitted-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.unsubmitted-summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.summary-card-total {
    background: #f5f5f5;
    border: 2px solid #ddd;
}

.summary-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.summary-card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc3545;
    margin: 0 0 8px 0;
}

.summary-card-value-total {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 8px 0;
}

.summary-card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0 0 5px 0;
}

.summary-card-status {
    font-size: 0.85rem;
    color: #dc3545;
    font-weight: 500;
    margin: 0;
}

.summary-card-status-total {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-tab:hover {
    background: #f9f9f9;
    border-color: var(--orange-color);
}

.filter-tab.active {
    background: var(--orange-color);
    color: white;
    border-color: var(--orange-color);
}

.filter-tab span {
    font-weight: 600;
    margin-left: 5px;
}

/* Unsubmitted Table */
.unsubmitted-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.unsubmitted-table thead {
    background: #dc3545;
    color: white;
}

.unsubmitted-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.unsubmitted-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.unsubmitted-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* LAC Badge in Table */
.lac-badge-table {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--orange-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.lac-badge-table i {
    font-size: 0.8rem;
}

/* Status Badge */
.status-badge-not-submitted {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #dc3545;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge-not-submitted i {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-nav {
        flex-direction: column;
    }
    
    .nav-item {
        padding: 12px 20px;
    }
    
    .admin-content {
        padding: 15px;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .lac-analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .unsubmitted-summary-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-tabs {
        flex-direction: column;
    }
    
    .filter-tab {
        width: 100%;
        text-align: center;
    }
}
