/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --header-height: 80px;
    --sidebar-width: 280px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px !important;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1030;
    flex-shrink: 0;
    margin: 0;
    padding: 0 10px;
}

.header h3 {
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Main Content Wrapper */
.main-content-wrapper {
    padding-top: var(--header-height);
    min-height: 100vh;
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
    padding-bottom: 20px !important;
}

/* Landing Page Styles */
.landing-page-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px !important;
}

.min-vh-100 {
    min-height: calc(100vh - var(--header-height) - 60px);
    display: flex;
    align-items: center;
}

/* Traffic Lights Animation */
.traffic-lights {
    gap: 15px;
}

.light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    opacity: 0.3;
}

.light.red {
    background-color: #ff4444;
    animation-name: glow-red;
    animation-delay: 0s;
}

.light.amber {
    background-color: #ffaa00;
    animation-name: glow-amber;
    animation-delay: 1s;
}

.light.green {
    background-color: #44ff44;
    animation-name: glow-green;
    animation-delay: 2s;
}

@keyframes glow-red {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 20px #ff4444; }
}

@keyframes glow-amber {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 20px #ffaa00; }
}

@keyframes glow-green {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 20px #44ff44; }
}

/* Enhanced Sidebar Styles */
.sidebar {
    min-height: calc(100vh - var(--header-height) - 60px);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    background: white;
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 60px;
    overflow-y: auto;
    z-index: 1020;
    transition: all 0.3s ease;
    width: var(--sidebar-width);
    transform: translateX(0);
}

.sidebar.collapsed {
    transform: translateX(-100%);
    width: 0;
}

/* Admin sidebar specific */
#sidebar.admin-sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    height: calc(100vh - var(--header-height) - 60px);
    overflow-y: auto;
    z-index: 1020;
}

.sidebar .nav-link {
    color: var(--dark-color);
    padding: 10px 15px;
    margin: 2px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1021;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* Main Content Area */
main {
    margin-bottom: 60px;
    padding-bottom: 20px;
    min-height: calc(100vh - var(--header-height) - 60px);
    position: relative;
    z-index: 1;
    transition: margin-left 0.3s ease;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
}

.main-content-expandable.sidebar-collapsed {
    margin-left: 0;
    width: 100%;
}

/* Admin main content */
.col-md-9.ms-sm-auto.col-lg-10.px-md-4 {
    margin-left: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white;
    border-top: 3px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
    height: 60px;
    margin: 0 !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white !important;
    text-decoration: underline;
}
/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), #0a58ca);
    color: white;
    border-bottom: none;
}

/* Button Styles */
.btn {
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0a58ca);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #c82333);
    border: none;
}

.btn-danger:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(220, 53, 69, 0.4);
}

/* Sidebar Toggle Button */
#sidebarToggle {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

#sidebarToggle:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.sidebar-toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 60px;
    background: rgba(0,0,0,0.5);
    z-index: 1019;
    display: none;
}

.sidebar-overlay.show {
    display: block;
}

/* Table Styles */
.table th {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 8px;
    border-left: 4px solid;
}

.alert-success {
    border-left-color: var(--success-color);
}

.alert-danger {
    border-left-color: var(--danger-color);
}

.alert-warning {
    border-left-color: var(--warning-color);
}

.alert-info {
    border-left-color: var(--info-color);
}

/* Badge Styles */
.badge {
    font-weight: 500;
    padding: 6px 10px;
}

/* Stats Cards Border Styles */
.border-left-primary {
    border-left: 4px solid #0d6efd;
}

.border-left-success {
    border-left: 4px solid #198754;
}

.border-left-info {
    border-left: 4px solid #0dcaf0;
}

.border-left-warning {
    border-left: 4px solid #ffc107;
}

.text-xs {
    font-size: 0.7rem;
}

.font-weight-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-gray-800 {
    color: #5a5c69;
}

.text-gray-300 {
    color: #dddfeb;
}

.h-100 {
    height: 100%;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Shadow utilities */
.shadow {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: var(--sidebar-width);
        height: calc(100vh - var(--header-height) - 60px);
        transition: left 0.3s ease;
        z-index: 1020;
    }
    
    .sidebar:not(.collapsed) {
        left: 0;
    }
    
    .sidebar-overlay.show {
        display: block;
    }
    
    main {
        margin-left: 0;
        width: 100%;
    }
    
    .header h3 {
        font-size: 1.2rem;
    }
    
    .traffic-lights {
        gap: 8px;
    }
    
    .light {
        width: 15px;
        height: 15px;
    }
    
    .footer {
        height: 60px;
        padding: 10px 0;
    }
    
    .min-vh-100 {
        min-height: 50vh;
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .header {
        height: var(--header-height);
        padding: 10px;
    }
    
    .footer {
        height: 60px;
        padding: 10px 0;
    }
    
    .footer .row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

/* Dropdown menu positioning */
.dropdown-menu {
    z-index: 1050;
}

/* Updated Dropdown Styles for Blue Theme */
.dropdown-menu {
    background: linear-gradient(135deg, #0d6efd, #0a58ca) !important;
    border: none !important;
    border-radius: 8px !important;
}

.dropdown-item {
    color: white !important;
    padding: 10px 15px !important;
    transition: all 0.3s ease !important;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Ensure dropdown button stays blue */
.btn-primary.dropdown-toggle {
    background: linear-gradient(135deg, #0d6efd, #0a58ca) !important;
    border: none !important;
}

.btn-primary.dropdown-toggle:hover {
    background: linear-gradient(135deg, #0a58ca, #084298) !important;
    transform: translateY(-1px);
}

/* Ensure all interactive elements are clickable */
.nav-link, .btn, .dropdown-toggle, .accordion-button {
    position: relative;
    z-index: 10;
}

/* Print Styles */
@media print {
    .header, .footer, .sidebar, .btn {
        display: none;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Fix Z-index issues */
.header {
    z-index: 1030 !important;
}

.footer {
    z-index: 1030 !important;
}

.sidebar {
    z-index: 1020 !important;
}

.dropdown-menu {
    z-index: 1050 !important;
}

.modal {
    z-index: 1060 !important;
}

/* Enhanced Media Player Styles */
.media-player-container {
    width: 100%;
    max-width: 100%;
}

.media-controls-top {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.size-controls .btn,
.quality-controls .btn {
    margin: 0 2px;
}

.media-content {
    transition: all 0.3s ease;
}

.video-player, .audio-player {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.threejs-container {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.media-info {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

/* Responsive media controls */
@media (max-width: 768px) {
    .media-controls-top {
        flex-direction: column;
        gap: 10px;
    }
    
    .size-controls, .quality-controls {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }
    
    .size-controls .btn,
    .quality-controls .btn {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

/* Image zoom effect */
.image-container {
    overflow: hidden;
    border-radius: 8px;
}

.image-container img {
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.02);
}

/* FIXED: Media Modal Styles - Remove Backdrop Completely */
#mediaModal {
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.9) !important;
}

#mediaModal .modal-dialog {
    z-index: 100000 !important;
    max-width: 95% !important;
    margin: 20px auto !important;
}

#mediaModal .modal-content {
    z-index: 100001 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#mediaModal .modal-header {
    z-index: 100002 !important;
    background: rgba(13, 110, 253, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    border-radius: 8px !important;
}

#mediaModal .modal-body {
    z-index: 100001 !important;
    padding: 60px 20px 20px 20px !important;
    background: transparent !important;
}

#mediaModal .modal-footer {
    z-index: 100001 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

#mediaModal .btn-close {
    z-index: 100003 !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    font-size: 1.5rem !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
}

#mediaModal .btn-close:hover {
    opacity: 0.8 !important;
}

/* Remove modal backdrop completely */
.modal-backdrop {
    display: none !important;
}

.modal-backdrop.show {
    display: none !important;
}

/* Ensure all modal content is fully visible */
.modal.show .modal-dialog {
    transform: none !important;
}

/* Media content specific styles */
.media-content img,
.media-content video,
.media-content audio {
    z-index: 1 !important;
    position: relative !important;
}

.video-player-container,
.audio-player-container,
.image-container {
    z-index: 1 !important;
    position: relative !important;
}

/* Enhanced close button for images */
.modal-close-btn {
    z-index: 100003 !important;
    position: absolute !important;
    top: 70px !important;
    right: 30px !important;
    background: rgba(220, 53, 69, 0.9) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    font-weight: bold !important;
}

.modal-close-btn:hover {
    background: rgba(220, 53, 69, 1) !important;
    transform: scale(1.1) !important;
}

/* Make sure video/audio controls are clickable */
video::-webkit-media-controls,
audio::-webkit-media-controls {
    z-index: 10 !important;
    position: relative !important;
}

/* Ensure all interactive elements are clickable */
button, .btn, [onclick], .nav-link, .dropdown-item, .accordion-button {
    cursor: pointer !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Audio player specific styles */
.audio-player-container {
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 20px 0;
}

.audio-player {
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

.audio-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: left;
}

.audio-info p {
    margin-bottom: 5px;
    color: white;
}

.file-icon {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.file-icon:hover {
    opacity: 1;
}

/* Video player container */
.video-player-container {
    text-align: center;
    background: #000;
    border-radius: 8px;
    padding: 10px;
}

.video-player {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #000;
}

/* Three.js container */
.threejs-container {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

/* Text colors for dark background */
#mediaModal .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

#mediaModal .text-white {
    color: white !important;
}

#mediaModal h1, 
#mediaModal h2, 
#mediaModal h3, 
#mediaModal h4, 
#mediaModal h5, 
#mediaModal h6 {
    color: white !important;
}

#mediaModal p {
    color: rgba(255, 255, 255, 0.9) !important;
}
/* PDF Viewer Styles */
.pdf-viewer-container {
    width: 100%;
    height: 80vh;
    border: none;
    background: white;
}

.pdf-controls {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.pdf-controls .btn-group {
    display: flex;
    gap: 5px;
}

.pdf-controls .form-control {
    width: auto;
    display: inline-block;
}

.pdf-canvas {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* FIXED: Enhanced Media Modal Styles - Remove Backdrop Completely */
#mediaModal {
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.95) !important;
}

#mediaModal .modal-dialog {
    z-index: 100000 !important;
    max-width: 95% !important;
    margin: 20px auto !important;
    height: 90vh;
}

#mediaModal .modal-content {
    z-index: 100001 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    height: 100%;
}

#mediaModal .modal-header {
    z-index: 100002 !important;
    background: rgba(13, 110, 253, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    border-radius: 8px !important;
}

#mediaModal .modal-body {
    z-index: 100001 !important;
    padding: 60px 20px 20px 20px !important;
    background: transparent !important;
    height: calc(100% - 120px);
    overflow: auto;
}

#mediaModal .modal-footer {
    z-index: 100001 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

#mediaModal .btn-close {
    z-index: 100003 !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    font-size: 1.5rem !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
}

#mediaModal .btn-close:hover {
    opacity: 0.8 !important;
}

/* Remove modal backdrop completely */
.modal-backdrop {
    display: none !important;
}

.modal-backdrop.show {
    display: none !important;
}

/* Ensure all modal content is fully visible */
.modal.show .modal-dialog {
    transform: none !important;
}

/* Media content specific styles */
.media-content img,
.media-content video,
.media-content audio {
    z-index: 1 !important;
    position: relative !important;
}

.video-player-container,
.audio-player-container,
.image-container {
    z-index: 1 !important;
    position: relative !important;
}

/* Enhanced close button for images */
.modal-close-btn {
    z-index: 100003 !important;
    position: absolute !important;
    top: 70px !important;
    right: 30px !important;
    background: rgba(220, 53, 69, 0.9) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.modal-close-btn:hover {
    background: rgba(220, 53, 69, 1) !important;
    transform: scale(1.1) !important;
}

/* Make sure video/audio controls are clickable */
video::-webkit-media-controls,
audio::-webkit-media-controls {
    z-index: 10 !important;
    position: relative !important;
}

/* PDF Viewer Styles */
.pdf-viewer-container {
    width: 100%;
    height: 80vh;
    border: none;
    background: white;
}

.pdf-controls {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.pdf-controls .btn-group {
    display: flex;
    gap: 5px;
}

.pdf-controls .form-control {
    width: auto;
    display: inline-block;
}

.pdf-canvas {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    border-radius: 5px;
}

.pdf-container {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: auto;
    background: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure all interactive elements are clickable */
button, .btn, [onclick], .nav-link, .dropdown-item, .accordion-button {
    cursor: pointer !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Audio player specific styles */
.audio-player-container {
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 20px 0;
}

.audio-player {
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

.audio-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: left;
}

.audio-info p {
    margin-bottom: 5px;
    color: white;
}

.file-icon {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.file-icon:hover {
    opacity: 1;
}

/* Video player container */
.video-player-container {
    text-align: center;
    background: #000;
    border-radius: 8px;
    padding: 10px;
}

.video-player {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #000;
}

/* Three.js container */
.threejs-container {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #f8f9fa;
    min-height: 400px;
}

/* Text colors for dark background */
#mediaModal .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

#mediaModal .text-white {
    color: white !important;
}

#mediaModal h1, 
#mediaModal h2, 
#mediaModal h3, 
#mediaModal h4, 
#mediaModal h5, 
#mediaModal h6 {
    color: white !important;
}

#mediaModal p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive PDF controls */
@media (max-width: 768px) {
    .pdf-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .pdf-controls .btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }
}