
        .account-type-card {
            transition: all 0.3s ease;
        }

        .account-type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-color: var(--bs-primary) !important;
        }

        .account-type-card.selected {
            border-color: var(--bs-primary) !important;
            background-color: rgba(var(--bs-primary-rgb), 0.05);
        }

        .border-dashed {
            border-style: dashed !important;
        }

        .file-item {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 0.375rem;
            padding: 0.5rem 0.75rem;
            margin-bottom: 0.5rem;
            display: flex;
            /* align-items-center; */
            justify-content: between;
        }

        .file-item .file-info {
            flex: 1;
            display: flex;
            /* align-items-center; */
        }

        .file-item .file-name {
            margin-left: 0.5rem;
            font-size: 0.875rem;
        }

        .file-item .file-size {
            font-size: 0.75rem;
            color: #6c757d;
            margin-left: 0.25rem;
        }

        .file-item .remove-file {
            color: #dc3545;
            cursor: pointer;
            padding: 0.25rem;
        }

        .file-item .remove-file:hover {
            color: #c82333;
        }

 /* ----------------------------------------------------- */
        :root {
            --primary-color: #2563eb;
            --primary-hover: #1d4ed8;
            --secondary-color: #64748b;
            --success-color: #059669;
            --danger-color: #dc2626;
            --warning-color: #d97706;
            --info-color: #0891b2;
            --dark-color: #1f2937;
            --light-color: #f8fafc;
            --border-color: #e2e8f0;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --plain-color: #ffffff;
            --background-color: #f8fafc;
        }

        body {
            background-color: var(--background-color);
            font-family: 'Inter', sans-serif;
            color: var(--text-primary);
        }

        /* General Layout */
        .accounts-dashboard {
            padding: 2rem 0;
        }

        .content-card {
            background: var(--plain-color);
            box-shadow: var(--shadow-sm);
            border-radius: 12px;
            overflow: hidden;
        }

        .card-header {
            padding: 1.5rem;
            background: #fafbfc;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .card-header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-grow: 1;
            gap: 1rem;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
        }

        .btn-primary-action {
            background: var(--primary-color);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: background 0.2s ease, transform 0.2s ease;
            border: none;
        }

        .btn-primary-action:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
        }

        /* Dashboard Header Card */
        .dashboard-header-card {
            background: var(--plain-color);
            box-shadow: var(--shadow-sm);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 2rem;
            position: relative;
        }

        .header-top-border {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--primary-color);
        }

        .header-content-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .page-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
        }

        .page-subtitle {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
            margin-bottom: 0;
        }

        /* Summary Cards */
        .summary-cards-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--light-color);
            border-top: 1px solid var(--border-color);
        }

        .summary-card {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .summary-icon-bg {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
        }

        .summary-value {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0;
        }

        .summary-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        /* Table Styles */
        .table-section {
            margin-top: 2rem;
        }

        .search-input-group {
            max-width: 300px;
        }

        .professional-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .professional-table thead tr {
            border-bottom: 2px solid #f0f0f0;
        }

        .professional-table th {
            text-align: left;
            padding: 1rem;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .professional-table td {
            padding: 1rem;
            border-bottom: 1px solid #f9f9f9;
            vertical-align: middle;
            color: var(--text-primary);
        }

        .professional-table tbody tr:last-child td {
            border-bottom: none;
        }

        .account-cell {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .account-icon-container {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light-color);
            border-radius: 8px;
        }

        .badge {
            padding: 0.5em 1em;
            border-radius: 50px;
            font-weight: 500;
        }

        .status-badge {
            min-width: 80px;
            text-align: center;
        }

        .empty-state {
            text-align: center;
            color: var(--text-secondary);
            padding: 3rem 0;
            font-style: italic;
        }

        .empty-state i {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.3;
        }

        /* Dropdown Actions */
        .action-dropdown-accounts{
            position: relative;
        }

        .action-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-secondary);
            padding: 0.5rem;
            border-radius: 8px;
            transition: background 0.2s ease;
        }

        .action-btn:hover {
            background: var(--light-color);
        }

        .dropdown-menu {
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            border: none;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.25rem;
            color: var(--text-primary);
            transition: background 0.2s ease;
        }

        .dropdown-item:hover {
            background: var(--light-color);
        }

        .dropdown-divider {
            margin: 0.5rem 0;
            border-color: #e0e0e0;
        }

        .modal-content {
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

        .modal-header {
            border-bottom: none;
        }

        .modal-footer {
            border-top: none;
        }

