body {
            font-family: Arial, sans-serif;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            
        }
        .sidebar {
            width: 15%;
            min-width: 60px;
            max-width: 15%;
            background: #343a40;
            color: white;
            height: 100vh;
            position: fixed;
            padding-top: 20px;
            transition: transform 0.3s ease-in-out;
            z-index: 1000;
        }
        .sidebar a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 10px 20px;
        }
        .sidebar a:hover {
            background: #495057;
        }
        .content {
            margin-left: 16%;
            padding: 20px;
            flex: 1; /* Ensures the content grows to fill the available space */
        }
        .topbar {
            background: #f8f9fa;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #ddd;
        }
        .menu-toggle {
            display: none;
            background: #f8f9fa;
            color: #343a40;
            border: none;
            padding: 10px;
            cursor: pointer;
            margin-right: 10px;
        }
        .card-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .card {
            flex: 1;
            margin: 10px;
            min-width: 200px;
        }
        .table-responsive {
            margin-top: 20px;
        }
        .profile-container {
            max-width: 600px;
            margin: auto;
            padding-bottom: 50px; 
        }
        .profile-picture {
            text-align: center;
            margin-bottom: 20px;
        }
        .profile-picture img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .kyc-container {
            max-width: 600px;
            margin: auto;
        }
        .footer {
            background-color: #f8f9fa; /* Matches a light background */
            color: #212529; /* Text color for contrast */
            padding: 1rem;
            text-align: center;
        }
        @media (max-width: 768px) {
            .sidebar {
                width: 70%;
                max-width: 70%;
                transform: translateX(-100%);
                position: fixed;
                height: 100vh;
                top: 0;
                left: 0;
                display: block;
                background: rgba(52, 58, 64, 0.95);
                padding-top: 40px;
            }
            .content {
                margin-left: 0;
            }
            .card {
            flex: 1;
            margin: 6px;
            min-width: 200px;
        }
            .menu-toggle {
                display: block;
            }
            .sidebar.active {
                transform: translateX(0);
            }
            .overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            .overlay.active {
                display: block;
            }
            .close-menu {
                position: absolute;
                top: 10px;
                right: 20px;
                font-size: 24px;
                color: white;
                cursor: pointer;
                background: none;
                border: none;
                display: block;
            }
        }
        @media (min-width: 769px) {
            .close-menu {
                display: none;
            }
        }