.table-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #001848;
}

.table-wrapper {
    background-color: #fff;
    border-left: 4px solid #007bff;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.table-custom th {
    background-color: #f1f5f9;
    color: #001848;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.table-custom td {
    font-size: 14px;
    vertical-align: middle;
    color: #333;
    padding: 0.75rem;
    white-space: nowrap;
}

.table-custom tr:hover {
    background-color: #f8fbff;
}

.table-custom .btn {
    font-size: 13px;
    padding: 4px 10px;
}

.table-wrapper {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1.5rem;
}

.table-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.list-unstyled li {
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.list-unstyled li:hover {
    background: #f0f2f5;
    transform: translateX(4px);
}

.list-unstyled strong {
    color: #0d6efd;
    margin-right: 0.5rem;
}

.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-link {
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-link:hover {
    color: #0a58ca;
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .table-wrapper {
        padding: 10px;
    }

    .table-custom th,
    .table-custom td {
        font-size: 13px;
        padding: 8px 6px;
    }
}