body {
    background: linear-gradient(120deg, #f8fafc 0%, #e3e9f7 100%);
    min-height: 100vh;
}
.dashboard-bg {
    min-height: 100vh;
    padding: 40px 0 20px 0;
    background: transparent;
}
.demo-card {

    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(80,120,200,0.10), 0 1.5px 6px 0 rgba(80,120,200,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fff;
    margin: 0 auto;
}
.demo-card:hover {
    box-shadow: 0 12px 40px 0 rgba(80,120,200,0.18), 0 3px 12px 0 rgba(80,120,200,0.12);
    transform: translateY(-4px) scale(1.01);
}
.demo-card-header {
    background-color: #5A8DEE;
    color: #fff;
    border-radius: 18px 18px 0 0;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.demo-card-header .bi {
    font-size: 2.2rem;
    opacity: 0.85;
}
.demo-card-body {
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
}
.demo-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1.2rem;
    margin-bottom: 1.2rem;
}
.demo-info-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.97rem;
}
.demo-badges .badge {
    font-size: 0.95rem;
    margin-right: 0.5rem;
    margin-bottom: 0.2rem;
}
.demo-actions {
    display: flex;
    gap: 0.7rem;
}
.demo-actions .btn {
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px 0 rgba(80,120,200,0.08);
}
.demo-actions .btn:hover {
    box-shadow: 0 4px 16px 0 rgba(80,120,200,0.16);
}
@media (max-width: 768px) {
    .demo-card { max-width: 98vw; }
    .demo-info-grid { grid-template-columns: 1fr; }
}
     
     /* Enhanced Table Styles */
     .table-container {
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        padding: 20px;
        margin: 20px 0;
    }

    .table {
        width: 100%;
        margin-bottom: 1rem;
        background-color: transparent;
        border-collapse: separate;
        border-spacing: 0;
    }

    .table th {
        background-color: #f8f9fa;
        color: #495057;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        padding: 15px;
        border-bottom: 2px solid #dee2e6;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .table td {
        padding: 12px 15px;
        vertical-align: middle;
        border-bottom: 1px solid #e9ecef;
        font-size: 0.95rem;
    }

    .table tbody tr {
        transition: all 0.2s ease;
    }

    .table tbody tr:hover {
        background-color: #f8f9fa;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    /* Status Badge Styles */
    .badge {
        padding: 8px 12px;
        border-radius: 20px;
        font-weight: 500;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .badge-success {
        background-color: #28a745;
        color: white;
    }

    .badge-danger {
        background-color: #dc3545;
        color: white;
    }

    /* Filter Section Styles */
    .filter-section {
        background: white;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .filter-section .form-control {
        border-radius: 8px;
        border: 1px solid #dee2e6;
        padding: 10px 15px;
        transition: all 0.2s ease;
    }

    .filter-section .form-control:focus {
        border-color: #5A8DEE;
        box-shadow: 0 0 0 0.2rem rgba(90,141,238,0.25);
    }

    /* Button Styles */
    .btn {
        padding: 8px 20px;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .btn-primary {
        background-color: #5A8DEE;
        border-color: #5A8DEE;
    }

    .btn-primary:hover {
        background-color: #4a7de0;
        border-color: #4a7de0;
        transform: translateY(-1px);
    }

    .btn-success {
        background-color: #28a745;
        border-color: #28a745;
    }

    .btn-success:hover {
        background-color: #218838;
        border-color: #218838;
        transform: translateY(-1px);
    }

    /* Pagination Styles */
    .pagination {
        margin-top: 20px;
        justify-content: center;
    }

    .page-link {
        padding: 8px 16px;
        margin: 0 4px;
        border-radius: 8px;
        color: #5A8DEE;
        border: 1px solid #dee2e6;
        transition: all 0.2s ease;
    }

    .page-link:hover {
        background-color: #f8f9fa;
        border-color: #5A8DEE;
    }

    .page-item.active .page-link {
        background-color: #5A8DEE;
        border-color: #5A8DEE;
    }

    /* Responsive Table */
    @media (max-width: 768px) {
        .table-responsive {
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .table th, .table td {
            white-space: nowrap;
        }

        .filter-section {
            padding: 15px;
        }

        .btn {
            width: 100%;
            margin: 5px 0;
        }
    }

    /* Loading State */
    .table-loading {
        position: relative;
        min-height: 200px;
    }

    .table-loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 40px 20px;
        background: #f8f9fa;
        border-radius: 15px;
        margin: 20px 0;
    }

    .empty-state i {
        font-size: 48px;
        color: #6c757d;
        margin-bottom: 15px;
    }

    .empty-state p {
        color: #6c757d;
        font-size: 1.1rem;
        margin: 0;
    }
