.table-container {
    margin-bottom: 2rem;
    overflow-x: auto;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.table-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    background-color: #fff;
}

.custom-table th,
.custom-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    text-align: left;
    vertical-align: middle;
    width: 310px;
}

.custom-table thead {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
}

.custom-table tbody tr:hover {
    background-color: #f1f3f5;
    transition: background-color 0.2s ease-in-out;
}

.custom-table th:first-child,
.custom-table td:first-child {
    text-align: center;
    width: 70px;
}