﻿.table-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: -1px 0px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow-x: auto;
}
.table-containerV2 {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 1px 2px 6px -1px rgba(0, 0, 0, 0.1), 0px 4px 4px -1px rgba(0, 0, 0, 0.06);
}
table, .table {
    width: 100%;
    border-collapse: collapse;
}

thead, .table-header {
    background-color: #f7fafc;
}

th, .table-header-cell {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

tr, .table-row {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

tr:hover, .table-row:hover {
    background-color: #f7fafc;
}

td, .table-cell {
    padding: 0.75rem;
    color: #4a5568;
}