.tables-list {
    margin: 1.25rem 0;
}

.table-item {
    margin: 0.9375rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.table-item:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

.table-link {
    display: block;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    padding: 1.25rem;
    transition: background-color 0.3s ease;
    border: 0.125rem solid transparent;
}

.table-link:hover {
    background-color: #f8f9fa;
    text-decoration: none;
    border-color: #007bff;
}

.table-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #007bff;
    text-align: left;
}

.table-arrow {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: bold;
}

.empty-state {
    text-align: center;
    padding: 2.5rem 1.25rem;
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.empty-state p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.25rem;
}

.btn-link {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 0.9375rem 1.875rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-link:hover {
    background-color: #0056b3;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .table-link {
        padding: 1.5625rem 1.25rem;
    }

    .table-info h3 {
        font-size: 1.375rem;
    }

    .table-arrow {
        font-size: 1.75rem;
    }

    .empty-state p {
        font-size: 1.25rem;
    }

    .btn-link {
        padding: 1.125rem 2.1875rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .table-link {
        padding: 1.875rem 1.25rem;
    }

    .table-info h3 {
        font-size: 1.5rem;
    }

    .table-arrow {
        font-size: 2rem;
    }

    .empty-state p {
        font-size: 1.375rem;
    }

    .btn-link {
        padding: 1.25rem 2.5rem;
        font-size: 1.25rem;
    }
}