    .table-container {
        max-height: 400px;
        max-width: 700px;
        margin: auto;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        overflow: auto;
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th, td {
        padding: 16px 20px;
        text-align: left;
    }

    th {
        background: #292929;
        color: white;
        font-size: 14px;
        letter-spacing: 0.5px;
        position: sticky;
        top: 0;
        text-transform: uppercase;
        /* z-index: 1; */
    }

    tbody tr {
        border-bottom: 1px solid #eee;
        transition: all 0.2s ease;
    }

    tbody tr:nth-child(even) {
        background: #f9fafb;
    }

    tbody tr:hover {
        background: #eef2ff;
        /* transform: scale(1.01); */
    }