@charset "utf-8";
/* CSS Document */
  /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #69C9D0;
            --secondary: #EE1D52;
            --dark: #2D3748;
            --light: #ffffff;
            --gray: #f5f5f5;
            --text: #333333;
            --sidebar-bg: #4A5568;
            --sidebar-hover: #2D3748;
            --sidebar-active: #3182CE;
            --tiktok: #69C9D0;
            --instagram: #E1306C;
            --facebook: #1877F2;
            --telegram: #0088CC;
            --youtube: #FF0000;
            --twitter: #1DA1F2;
        }
         .filter-select {
            padding: 10px 15px;
            border-radius: 4px;
            border: 1px solid #ddd;
            background: var(--light);
            min-width: 180px;
        }
		.search-button {
			height:38px;
        padding: 10px 15px;
        border-radius: 4px;
        border: 1px solid #ddd;
        background: #007bff;
        color: white;
        cursor: pointer;
        font-size: 14px;
        text-align: center;
    }
    
    .search-button:hover {
        background: #0056b3;
    }
    
    @media (max-width: 768px) {
        .filter-row {
            flex-wrap: wrap;
        }
        .filter-group {
            flex: 1 1 45%;
            max-width: 100%;
        }
        .filter-select, .search-button {
            min-width: 100%;
        }
		
    }
    
    @media (max-width: 480px) {
        .filter-group {
            flex: 1 1 100%;
        }
    }
        body {
            background-color: var(--gray);
            color: var(--text);
            line-height: 1.6;
            display: flex;
            min-height: 100vh;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        button {
            cursor: pointer;
            border: none;
            outline: none;
        }
        
        /* Sidebar Styles */
        .sidebar {
            width: 260px;
            background-color: var(--sidebar-bg);
            color: var(--light);
            transition: all 0.3s ease;
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            z-index: 100;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sidebar-header .logo {
            font-size: 22px;
            font-weight: 700;
        }
        
        .sidebar-header .logo span {
            color: var(--primary);
        }
        
        .sidebar-menu {
            padding: 15px 0;
        }
        
        .sidebar-menu ul {
            list-style: none;
        }
        
        .sidebar-menu ul li {
            margin-bottom: 5px;
        }
        
        .sidebar-menu ul li a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            font-weight: 500;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }
        
        .sidebar-menu ul li a:hover {
            background-color: var(--sidebar-hover);
            border-left-color: var(--primary);
        }
        
        .sidebar-menu ul li a.active {
            background-color: var(--sidebar-active);
            border-left-color: var(--primary);
        }
        
        .sidebar-menu ul li a i {
            margin-right: 12px;
            font-size: 18px;
            width: 24px;
            text-align: center;
        }
        
        .sidebar-footer {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
        }
        
        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .user-details h4 {
            font-size: 14px;
            margin-bottom: 2px;
        }
        
        .user-details p {
            font-size: 12px;
            opacity: 0.7;
        }
        
        /* Main Content */
        .main-content {
            flex: 1;
            margin-left: 260px;
            transition: margin-left 0.3s ease;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .top-bar {
            background-color: var(--light);
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 99;
        }
        
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }
        
        .mobile-menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .search-bar {
            display: flex;
            max-width: 400px;
            flex: 1;
            margin: 0 20px;
        }
        
        .search-bar input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }
        
        .search-bar button {
            background: var(--primary);
            color: var(--light);
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            font-weight: 600;
        }
        
        .top-bar-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .notification-icon, .messages-icon {
            position: relative;
            font-size: 20px;
            color: var(--dark);
            cursor: pointer;
        }
        
        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Content Area */
        .content-area {
            flex: 1;
            padding: 30px;
            overflow-y: auto;
        }
        
        .dashboard-section {
            display: none;
        }
        
        .dashboard-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .section-title {
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .section-title p {
            color: #666;
            max-width: 600px;
        }
        
        /* Dashboard Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat-card {
            background: var(--light);
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .stat-icon {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }
        
        .stat-info h3 {
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        .stat-info p {
            font-size: 14px;
            color: #666;
        }
        
        /* Categories Section */
        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .category-card {
            background: var(--light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
        }
        
        .category-img {
            height: 150px;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 40px;
        }
        
        .category-info {
            padding: 20px;
        }
        
        .category-info h3 {
            margin-bottom: 10px;
        }
        
        /* Featured Accounts */
        .grid-section {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .account-card {
            background: var(--light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
        }
        
        .account-card:hover {
            transform: translateY(-5px);
        }
        
        .account-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: white;
        }
        
        .badge-tiktok { background: var(--tiktok); }
        .badge-instagram { background: var(--instagram); }
        .badge-facebook { background: var(--facebook); }
        .badge-telegram { background: var(--telegram); }
        .badge-youtube { background: var(--youtube); }
        .badge-twitter { background: var(--twitter); }
        
        .account-header {
            padding: 15px;
            background:var(--dark);
            color: var(--light);
            display: flex;
            align-items: center;
        }
        
        .account-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        
        .account-info h3 {
            margin-bottom: 5px;
        }
        
        .account-stats {
            display: flex;
            gap: 15px;
            font-size: 14px;
        }
        
        .account-body {
            padding: 20px;
        }
        
        .account-details {
            margin-bottom: 15px;
        }
        
        .account-detail {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        
        .account-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
            text-align: center;
            margin: 15px 0;
        }
        
        .account-actions {
            display: flex;
            gap: 10px;
        }
        
        .btn {
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-secondary {
            background: var(--dark);
            color: var(--light);
            flex: 1;
            padding: 10px;
            border-radius: 4px;
            text-align: center;
        }
        
        .btn-secondary:hover {
            background: #333;
        }
        
        .btn-primary {
            background: var(--primary);
            color: var(--dark);
            flex: 1;
            padding: 10px;
            border-radius: 4px;
            text-align: center;
        }
        
        .btn-primary:hover {
            background: #5ab6bd;
        }

        /* Ad Banner */
        .ad-banner {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: var(--light);
            padding: 40px 0;
            text-align: center;
            margin: 40px 0;
            border-radius: 8px;
        }
        
        .ad-banner h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .ad-banner p {
            font-size: 18px;
            margin-bottom: 20px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* How It Works */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .step {
            text-align: center;
            padding: 20px;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--light);
        }
        
        .step h3 {
            margin-bottom: 15px;
        }
        
        /* Sell Account Form */
        .sell-form {
            background: var(--light);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            max-width: 800px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* Contact Page */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .contact-card {
            background: var(--light);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .contact-card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;			
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            overflow-y: auto;
        }
        
        .modal-content {
            background-color: var(--light);
            margin: 0% auto;
            width: 90%;
            max-width: 800px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: modalOpen 0.4s;
        }
        
        @keyframes modalOpen {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }
        
        .modal-header {
            padding: 20px;
            background: var(--dark);
            color: var(--light);
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h2 {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .close-modal {
            background: none;
            color: var(--light);
            font-size: 28px;
            cursor: pointer;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .account-detail-modal {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .account-stats-modal {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 20px 0;
        }
        
        .stat-box {
            background: var(--gray);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }
        
        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text);
        }
        
        .modal-actions {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .btn-success {
            background: #28a745;
            color: var(--light);
            flex: 1;
            padding: 12px;
            border-radius: 4px;
            text-align: center;
            font-weight: 600;
        }
        
        .btn-success:hover {
            background: #218838;
        }
        
        .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 4px;
            margin-top: 15px;
            text-align: center;
            font-weight: 600;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .sidebar {
                width: 220px;
            }
            
            .main-content {
                margin-left: 220px;
            }
        }
        
        @media (max-width: 768px) {
            .sidebar {
                left: -260px;
            }
            
            .sidebar.active {
                left: 0;
            }
            
            .main-content {
                margin-left: 0;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .top-bar {
                padding: 15px 20px;
            }
            
            .search-bar {
                margin: 0 10px;
            }
            
            .content-area {
                padding: 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .account-detail-modal {
                grid-template-columns: 1fr;
            }
            
            .modal-actions {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .categories {
                grid-template-columns: 1fr;
            }
            
            .grid-section {
                grid-template-columns: 1fr;
            }
            
            .search-bar {
                display: none;
            }
        }
.hr-style {
  text-align: center;			
  border-top: 1px solid #555;
  margin-top: 12px;margin-bottom: 12px;
  border: 1px medium #CCC;
  overflow:hidden;
  -webkit-mask: linear-gradient(90deg,#0000,#000 50% 68%,#0000);
}
/* Pass eye Styles */
.password-wrapper {
    position: relative;
}

.input-login {
    width: 100%;
    padding-right: 40px; /* Space for the icon */
    box-sizing: border-box;
}

/* Additional styles for login modal */
		
.tonal-overlay {
		
		position: fixed;
		top: 0;
		left:0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.6);
		display: none;
		justify-content: center;
		align-items: center;
		z-index: 1000;
	}

   .tonal-container {
	background-color: #fefefe;
    margin: 2% auto;
    padding: 0px 12px;
    border-radius: 8px;
    width: 80%;
    max-width: 418px;
    max-height: 80vh;
    overflow-y: auto;
	animation: tonalAppear 0.3s ease;}

        @keyframes tonalAppear {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .tonal-header {
            position: relative;
            padding: 20px;
        }

        .close-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #999;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: #333;
        }

        .tabs {
            display: flex;
            background: #f5f5f5;
        }

        .tab {
            flex: 1;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            font-weight: 600;
            color: #666;
            transition: all 0.3s ease;
        }

        .tab.active {
            background: white;
            color: #2575fc;
            border-bottom: 2px solid #2575fc;
        }

        .form-container {
            padding: 30px;
        }

        .form {
            display: none;
        }

        .form.active {
            display: block;
        }

        .form-title {
            margin-bottom: 20px;
            color: #333;
            font-size: 24px;
        }

        .input-group-login {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            text-align: left;
        }

        .input-login {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border 0.3s ease;
        }

        .input-login:focus {
            border-color: #2575fc;
            outline: none;
        }

        .tonal-btn {
            width: 100%;
            padding: 12px;
            background: #2575fc;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .tonal-btn:hover {
            background: #1a68e8;
        }

        .form-footer {
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #666;
        }

        .link {
            color: #2575fc;
            cursor: pointer;
            text-decoration: none;
        }

        .link:hover {
            text-decoration: underline;
        }

        .back-link {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #2575fc;
            cursor: pointer;
            font-size: 14px;
        }

        .back-link svg {
            margin-right: 5px;
        }
		@media (max-width: 768px) {
    .tonal-container {
        width: 100%;
        max-width: 100%;
        height: 80vh;
        max-height: 90vh;
        margin: 0;
        border-radius: 0;
        padding: 4px 4px 4px 4px;
    }

    .form-container {
        padding: 20px;
    }

    .tonal-header {
        padding: 15px;
    }
}



/* Optional: Style form rows to stay side-by-side */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 15px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
}
<!-- social account grid -->
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.no-accounts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

.no-accounts i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.account-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.account-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.account-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.account-avatar i {
    font-size: 28px;
}

.account-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.account-stats {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.account-body {
    padding: 20px;
}

.account-details {
    margin-bottom: 15px;
}

.account-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.account-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.account-detail span:first-child {
    font-weight: 600;
    color: #555;
}

.status-badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.verified {
    background: #e7f7ef;
    color: #28a745;
}

.status-badge.not-verified {
    background: #fde8e8;
    color: #dc3545;
}

.profile-link a {
    color: #0066cc;
    text-decoration: none;
}

.profile-link a:hover {
    text-decoration: underline;
}

.account-description {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.proof-files {
    margin: 15px 0;
}

.proof-files h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #555;
}

.proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.proof-item {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px 10px;
    transition: all 0.2s;
}

.proof-item:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

.proof-item.file {
    font-size: 0.85rem;
}

.proof-item.file i {
    margin-right: 5px;
    color: #6c757d;
}

.proof-img {
    height: 40px;
    border-radius: 4px;
}

.account-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-primary, .btn-info {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0069d9;
}

.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accounts-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .account-header {
        padding: 15px;
    }
    
    .account-avatar {
        width: 50px;
        height: 50px;
    }
    
    .account-avatar i {
        font-size: 24px;
    }
    
    .account-stats {
        flex-direction: column;
        gap: 5px;
    }
}
<!-- for modal update account -->
/* ---- Grid cards (you already have) ---- */
.accounts-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); }
.account-card { border:1px solid #ddd; border-radius:8px; overflow:hidden; background:#fff; }
.account-avatar i { font-size:2rem; margin-right:0.8rem; }
.account-info h3 { margin:0; font-size:1.2rem; }
.account-stats span { display:inline-block; margin-right:1rem; font-size:0.9rem; }
.account-body { padding:1rem; }
.account-detail { display:flex; justify-content:space-between; margin-bottom:0.5rem; }
.status-badge { padding:0.2rem 0.6rem; border-radius:4px; font-size:0.8rem; }
.status-badge.verified { background:#d4edda; color:#155724; }
.status-badge.not-verified { background:#f8d7da; color:#721c24; }
.proof-list { display:flex; flex-wrap:wrap; gap:0.5rem; margin-top:0.5rem; }
.proof-item { display:flex; align-items:center; gap:0.3rem; font-size:0.9rem; }
.proof-img { width:60px; height:60px; object-fit:cover; border-radius:4px; }
.account-actions { margin-top:1rem; display:flex; gap:0.5rem; }
.account-actions button { padding:0.4rem 0.8rem; border:none; border-radius:4px; cursor:pointer; font-size:0.9rem; }
.btn-primary { background:#007bff; color:#fff; }
.btn-info { background:#17a2b8; color:#fff; }

/* ---- Custom Modal ---- */
.modal-overlay {
    display:none; position:fixed; top:0; left:0; width:100%; height:100%;
    background:rgba(0,0,0,0.5); align-items:center; justify-content:center; z-index:999;
}
.modal-content {
    background:#fff; width:90%; max-width:600px; border-radius:8px; overflow:hidden;
    animation:fadeIn .3s;
}

.modal-close { background:none; border:none; font-size:1.4rem; cursor:pointer; }
.modal-body { padding:1rem; }
.modal-footer { padding:0.8rem 1rem; border-top:1px solid #ddd; text-align:right; }
.modal-footer button { margin-left:0.5rem; padding:0.4rem 0.8rem; border:none; border-radius:4px; cursor:pointer; }
.btn-success { background:#28a745; color:#fff; }
.btn-secondary { background:#6c757d; color:#fff; }

.row { display:flex; flex-wrap:wrap; gap:1rem; }
.col { flex:1; min-width:200px; }
.form-group { margin-bottom:1rem; }
.form-group label { display:block; margin-bottom:0.3rem; font-weight:600; }
.form-group input,
.form-group select,
.form-group textarea { width:100%; padding:0.5rem; border:1px solid #ccc; border-radius:4px; }

@keyframes fadeIn { from{opacity:0;transform:scale(.9)} to{opacity:1;transform:scale(1)} }