@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1e3e5c;
    --primary-hover: #13283c;
    --secondary-color: #13263c;
    --accent-color: #4ea8de;
    --danger-color: #dc2626;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #333c4d;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

/* Login Page */

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    
    background: linear-gradient(
        135deg,
        #0f172a 0%,
        #1e293b 35%,
        #1e3a5f 70%,
        #0f172a 100%
    );

    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

/* Animated Gradient */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating Glow Circles */
.login-page::before,
.login-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: floatAnimation 10s ease-in-out infinite;
    z-index: 0;
}

.login-page::before {
    width: 350px;
    height: 350px;
    background: #4ea8de;
    top: -120px;
    left: -100px;
}

.login-page::after {
    width: 300px;
    height: 300px;
    background: #2563eb;
    bottom: -100px;
    right: -80px;
    animation-delay: 4s;
}

/* Floating Animation */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

/* Optional Animated Particles */
.login-page .particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.login-page .particles span {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: particleMove linear infinite;
}

/* Particle Animation */
@keyframes particleMove {
    from {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    to {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Keep card above animations */
.login-card {
    position: relative;
    z-index: 2;
}


.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 20px;
}

.login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.login-logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    background-color: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.login-card h1 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
}


.login-card {
    transition: all 0.4s ease;
}

.login-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(78, 168, 222, 0.15);
}


/* ── Company Selector Gate ──────────────────────────────── */
.company-selector-gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border: 2px dashed #4ea8de;
    border-radius: 18px;
    margin-bottom: 24px;
    text-align: center;
}

.company-gate-icon {
    font-size: 2.6rem;
}

.company-gate-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.company-gate-select {
    width: 100%;
    max-width: 400px;
    padding: 12px 18px;
    border: 2px solid #4ea8de;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    background: white;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.company-gate-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 62, 92, 0.12);
}

.company-gate-hint {
    color: var(--danger-color);
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0;
}

/* ── Selected Company Badge ─────────────────────────────── */
.selected-company-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 100%);
    border: 1.5px solid #4ea8de;
    border-radius: 14px;
    margin-bottom: 20px;
}

.badge-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--border-color);
    padding: 4px;
    flex-shrink: 0;
}

.badge-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.badge-cr {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.btn-change-company {
    background: white;
    border: 1.5px solid #4ea8de;
    color: #0369a1;
    padding: 7px 16px;
    border-radius: 9px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-change-company:hover {
    background: #0369a1;
    color: white;
    border-color: #0369a1;
}

/* ── End Company Gate ───────────────────────────────────── */

.companies-card {

    margin-top: 24px;
}

.companies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.section-subtitle {
    margin-top: 6px;
    color: #64748b;
    font-size: 0.95rem;
}

.company-form {
    margin-top: 24px;
    padding: 24px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.company-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.company-form textarea,
.company-form input {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 12px 14px;
    background: white;
    transition: all 0.2s ease;
}

.company-form textarea:focus,
.company-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.company-form textarea {
    min-height: 120px;
    resize: vertical;
}

.company-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.company-table-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 4px;
}

.company-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-edit-company {
    background-color: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-edit-company:hover {
    background-color: #0284c7;
    color: white;
    border-color: #0284c7;
}

.btn-delete-company {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-delete-company:hover {
    background-color: #dc2626;
    color: white;
    border-color: #dc2626;
}

.logo-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-preview-container {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8fafc;
}

.company-logo-preview {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-group input,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-danger,
.btn-action {
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    width: 100%;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-danger {
    background: var(--danger-color);
    color: #fff;
}

.btn-action {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Dashboard */
/* Dashboard Layout */
#dashboard {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-header {
    background-color: #ffffff;
    color: var(--secondary-color);
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    height: 70px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.btn-hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    padding: 0;
    z-index: 1010;
}

.btn-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.btn-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.btn-hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.company-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    flex-grow: 1;
    margin: 0 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-logout {
    background: rgba(220, 38, 38, 0.95);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-logout:hover {
    background: var(--danger-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.25);
}

.dashboard-layout {
    display: flex;
    flex: 1;
    position: relative;
    background-color: var(--bg-color);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    width: 260px;
    background-color: #0c1222;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    z-index: 95;
    overflow-y: auto;
}

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

.sidebar-nav ul {
    list-style: none;
    padding: 24px 0;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-right: 4px solid transparent;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.03);
    border-right-color: var(--primary-color);
}

.sidebar-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 90;
    transition: opacity 0.3s ease;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    padding: 32px;
    margin-top: 70px;
    margin-right: 260px;
    transition: margin-right 0.3s ease, padding 0.3s ease;
    min-height: calc(100vh - 70px);
    max-width: 100%;
}

.main-content.expanded {
    margin-right: 0;
}

@media (max-width: 768px) {
    .main-content {
        margin-right: 0;
        padding: 20px;
        max-width: 100%;
    }
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stats-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-card h3 {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stats-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Card Section */
.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Upload Grid Layout */
.upload-container-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .upload-container-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.upload-info-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.upload-info-card .info-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.upload-info-card h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.upload-info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-w-full {
    width: 100%;
}

/* Dropzone Styles */
.upload-area {
    padding: 32px;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    background: #fafbfd;
    transition: all 0.25s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 200px;
}

.upload-area:hover, .upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(30, 62, 92, 0.02);
}

.upload-area.dragover {
    transform: scale(1.01);
}

.file-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.upload-area-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

.upload-icon-pulse {
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.upload-area:hover .upload-icon-pulse {
    transform: translateY(-4px);
}

.upload-area-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.upload-area-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.file-spec {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* File Selected State */
.selected-file-state {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    z-index: 20;
}

.file-info-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.excel-icon-wrapper {
    background: #10b981;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.excel-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.file-details {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.file-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    word-break: break-all;
}

.file-size {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-remove-file {
    background: #f1f5f9;
    border: none;
    color: #64748b;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 30;
}

.btn-remove-file:hover {
    background: #fef2f2;
    color: var(--danger-color);
}

/* Search Bar */
.search-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

thead {
    background: #f8fafc;
    border-bottom: 2px solid var(--border-color);
}

th, td {
    padding: 16px;
    text-align: center;
    font-size: 0.95rem;
}

th {
    font-weight: 700;
    color: var(--secondary-color);
}

td {
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
}

tbody tr:nth-child(odd) {
    background: #ffffff;
}

tbody tr:nth-child(even) {
    background: #f8fafc;
}

tbody tr:hover {
    background: #f1f5f9;
}

/* Notifications */
#notifications {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1000;
}

.notification {
    background: var(--secondary-color);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
    min-width: 280px;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Errors */
#validation-errors {
    color: var(--danger-color);
    background: #fef2f2;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        z-index: 95;
        transform: translateX(100%) !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
        height: calc(100vh - 70px);
        width: 260px !important;
    }

    .sidebar.active {
        transform: translateX(0) !important;
    }

    .sidebar-overlay {
        opacity: 1;
    }

    .sidebar-overlay.hidden {
        display: none;
    }

    .section-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .section-header button {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 20px;
    }

    .company-title {
        font-size: 1rem;
        margin: 0 10px;
    }

    .btn-logout {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Pagination Controls Styling */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pagination-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(30, 62, 92, 0.15);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    cursor: default;
    box-shadow: 0 4px 10px rgba(30, 62, 92, 0.15);
}

.pagination-btn:disabled {
    background: #f1f5f9;
    border-color: var(--border-color);
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0 8px;
}

/* Raw Input Data Table — compact for many columns */
.raw-data-table .table-container table {
    font-size: 0.72rem;
}

.raw-data-table .table-container th,
.raw-data-table .table-container td {
    padding: 6px 8px;
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.raw-data-table .table-container th {
    font-size: 0.73rem;
}
