@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



:root {

    /* ===== GLobal Colors Start ===== */
  --global-bg-color: rgba(230, 248, 250, 1);
  --primary-color: rgba(38, 115, 184, 1);
  --primary-deep-color:rgba(30, 90, 144, 1);
  --primary-light-color:rgba(51, 143, 224, 0.1);
  --text-color-deep: rgba(17, 17, 17, 1);
  --text-color-light: rgba(153, 153, 153, 1);
  --text-color-white: rgba(255, 255, 255, 1);
  --separator-color: rgba(38, 115, 184, 0.3);
  --secondary-btn-hover-color:rgba(187, 236, 241, 1);
  --danger-color: rgb(229 43 43);
  --warning-color: rgba(255, 169, 43,1);
  --success-color: rgb(0, 192, 74);
  --default-warning-color: rgba(228, 0, 0, 0.1);
  --focus-input-bg-color: #D3EBF3;
  /* ===== GLobal Colors End ===== */
  --sidebar-collapsed-width: 0px;

  /* border */
  --active-border: 1px solid rgba(38, 115, 184, 1);
  --inactive-border: 1px solid rgba(38, 115, 184, 0.4);
  --redius-lg:12px;
  --radius-md:8px;
  --radius-sm:4px;

  --box-shadow: 0px 0px 24px 0px rgba(38, 115, 184, 0.2);

  --transition: all 0.3s ease;
  --sidebar-width: 260px;
  --header-height: 80px;

  --section-title:clamp(1.5rem, 1.125rem + 0.78125vw, 1.75rem);

  --container-mw:1920px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
} 
button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: none;
}
.btn:focus {
    outline: none;
    box-shadow: none;
  }
*:focus {
    outline: none;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
body {
    background-color: var(--global-bg-color);
    color: var(--text-color-deep);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: clamp(0.8125rem, 0.53125rem + 0.5859375vw, 1rem);
}
a{
  color: var(--text-color-deep);
}
li{
  list-style: none;
}
section{
padding: 1.5rem 0;
}
.site-content{
  padding: 0 1rem;
}
input,button,.btn{
  padding: .7rem 2.5rem;
  font-size: clamp(0.8125rem, 0.53125rem + 0.5859375vw, 1rem);
  width: 100%;
  border-radius:var(--radius-md);
  outline: none;
  border: var(--inactive-border);
  transition: var(--transition);
}
.section-title{
  font-size: var(--section-title);
  font-weight: 600;
  color: var(--primary-deep-color);
  margin-bottom: 2rem;
}
.primary-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    font-weight: 600;
}
.primary-btn:hover{
  background-color: var(--primary-deep-color);
}
.secondary-btn{
    width: 100%;
    background: transparent;
    color: var(--text-color-deep);
    border: var(--inactive-border);
    cursor: pointer;
    margin-top: 0.5rem;
    font-weight: 600;

}
.secondary-btn:hover{
  /* background: rgba(187, 236, 241, 1); */
  background-color: var(--secondary-btn-hover-color);
  border: var(--active-border);
}
.alert{
    padding: .5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}
.ml-auto{
  margin-left: auto;
}
.rotated {
  transform: rotate(180deg);
}
.container{
  max-width: var(--container-mw);
  width: 100%;
}
.cancel-text{
color: var(--warning-color);
font-weight: bold;
font-style: italic;
}
/* Enhanced Header Styles */
.site-header {
    background: linear-gradient(95.34deg, #D2FFEB -3.32%, #66B7FF 107.93%);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition, all 0.3s ease);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .logo a {
    color: var(--primary-color);
}

.site-header.scrolled .main-nav a {
    color: var(--text-color-deep);
}

.site-header.scrolled .main-nav a:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.site-header.scrolled .mobile-menu-btn {
    color: var(--text-color-deep);
}

.site-header .container {
    max-width: var(--container-mw, 1200px);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.site-header .main-nav a {
    color: var(--text-color-white);
    text-decoration: none;
    transition: var(--transition, all 0.3s ease);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.site-header .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-color-white, #ffffff);
    transition: var(--transition, all 0.3s ease);
}

.site-header.scrolled .main-nav a::after {
    background: var(--primary-color);
}

.site-header .main-nav a:hover::after {
    width: 100%;
}

.site-header .main-nav a:hover {
    transform: translateY(-2px);
}

.site-header .btn-login-register {
    background: var(--text-color-white);
    color: var(--primary-color) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition, all 0.3s ease);
}

.site-header .btn-login-register:hover {
    background: var(--primary-deep-color) !important;
    color: var(--text-color-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.site-header .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color-white, #ffffff);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition, all 0.3s ease);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    z-index: 1001;
    text-align: center;
    max-width: 50px;
}

.site-header .mobile-menu-btn:hover i {
    background: rgba(255, 255, 255, 0.1);
}

/* header css end */


/* Footer css start */
.site-footer {
    background: linear-gradient(95.34deg, #D2FFEB -0.32%, #66B7FF 107.93%);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.site-footer .container {
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-content .footer-logo {
    font-size: 1.8rem;

}

.footer-content .footer-about {
    max-width: 300px;
}

.footer-content .footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-content .social-links {
    display: flex;
    gap: 1rem;
}

.footer-content .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    text-decoration: none;
}

.footer-content .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--text-color-white);
}

.footer-content .footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-content .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-deep-color);
}

.footer-content .footer-links {
    list-style: none;
}

.footer-content .footer-links li {
    margin-bottom: 0.8rem;
}

.footer-content .footer-links a {
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-content .footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.footer-content .footer-links a:hover {
    transform: translateX(5px);
}

.footer-content .footer-newsletter p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.footer-content .newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-content .newsletter-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
}

.footer-content .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-content .newsletter-btn {
    background: var(--primary-deep-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.footer-content .newsletter-btn:hover {
    background: #2980b9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom .copyright {
    font-size: 13px;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-bottom .legal-links a {
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
}
/* Footer css end */
/* =============================
   DASHBOARD LAYOUT BASE
============================= */
:root {
    --sidebar-width: 260px;
    --header-height: 70px;
    --sidebar-collapsed-width: 0px;
}

.dashboard {
    min-height: 100vh;
    display: flex;
    position: relative;
}

/* Sidebar - Desktop: Always visible by default */
.dashboard .sidebar {
    width: var(--sidebar-width);
    background: #fff;
    color: #333;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
    box-shadow: var(--box-shadow);
    transform: translateX(0);
}

/* Sidebar collapsed state - FIXED */
.dashboard .sidebar.collapsed {
    transform: translateX(-100%) !important; /* Use !important to override desktop rule */
    width: var(--sidebar-width); /* Keep width so animation works smoothly */
}

/* Sidebar Brand */
.dashboard .sidebar-brand {
    display: flex;
    align-items: center;
    padding: 0 25px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
}

.dashboard .sidebar-brand i {
    font-size: 28px;
    color: var(--primary-deep-color, #2563eb);
    min-width: 30px;
}

.dashboard .sidebar-brand h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color, #1d4ed8);
    margin-left: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Sidebar Nav */
.dashboard .sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard .sidebar nav ul li {
    margin: 5px 0;
}

.dashboard .sidebar nav ul li a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #444;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    overflow: hidden;
    font-size: 16px;
}

.dashboard .sidebar nav ul li a:hover,
.dashboard .sidebar nav ul li a.active {
    background: #e0e7ff;
    color: var(--primary-deep-color, #2563eb);
    margin: 0 15px;
    border-radius: var(--radius-md);
}

.dashboard .sidebar nav ul li a i {
    margin-right: 15px;
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    min-width: 24px;
}

.dashboard .sidebar nav ul li a .ml-auto {
    margin-left: auto;
    transition: transform 0.3s ease;
}

/* Submenu */
.dashboard .submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02);
    transition: max-height 0.3s ease;
}

.dashboard .submenu.expanded {
    max-height: 200px;
}
.dashboard .submenu.expanded li a{
    padding: 6px 10px;
}
.dashboard .submenu li a {
    padding-left: 40px !important;
}

/* Rotated chevron for expanded submenus */
.dashboard .submenu-toggle .bx-chevron-down.rotated {
    transform: rotate(180deg);
}

/* ============================= MAIN CONTENT ============================= */
.dashboard .main-container {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: margin-left 0.3s ease-in-out;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* When sidebar is collapsed on desktop - FIXED */
.dashboard .sidebar.collapsed ~ .main-container {
    margin-left: 0 !important;
}

/* Header */
.dashboard .header {
    background: #fff;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    position: sticky;
    top: 0;
    z-index: 180;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Menu Toggle Button - Always visible and above sidebar */
.dashboard .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    z-index: 210;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.dashboard .menu-toggle:hover {
    background: #f1f5f9;
}

/* Content Area */
.dashboard .content {
    padding: 0 1rem;
    flex: 1;
    overflow-x: auto;
}

/* ============================= RESPONSIVE DESIGN ============================= */
@media (max-width: 1024px) {
    /* On mobile/tablet: Sidebar hidden by default */
    .dashboard .sidebar {
        transform: translateX(-100%);
        width: var(--sidebar-width);
    }

    /* Sidebar visible when active */
    .dashboard .sidebar.active {
        transform: translateX(0) !important;
    }

    /* Main content takes full width on mobile */
    .dashboard .main-container {
        margin-left: 0 !important;
        width: 100%;
    }

    /* Ensure toggle button is always visible and above sidebar */
    .dashboard .menu-toggle {
        z-index: 300;
    }

}

/* Extra Small Devices */
@media (max-width: 600px) {
    .dashboard .header {
        padding: 0 15px;
    }

    .dashboard .user-info {
        display: none;
    }

    .dashboard .sidebar nav ul li a {
        padding: 10px 20px;
    }

    .dashboard .sidebar {
        width: 240px;
    }
    /* Sidebar Brand */
.dashboard .sidebar-brand {
    padding: 0;
    margin-bottom: 10px;
}
}

/* Desktop - Large screens - FIXED */
@media (min-width: 1025px) {
    /* Ensure sidebar is visible by default but can be collapsed */
    .dashboard .sidebar {
        transform: translateX(0);
    }
    
    /* Allow sidebar to be collapsed on desktop */
    .dashboard .sidebar.collapsed {
        transform: translateX(-100%) !important;
    }

    /* Main container adjustment when sidebar collapsed */
    .dashboard .sidebar.collapsed ~ .main-container {
        margin-left: 0 !important;
    }

    /* Hide the overlay on desktop */
    .dashboard .sidebar::before {
        display: none;
    }
}

/* Rest of your existing styles remain the same */
.dashboard .user-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard .notification-bell {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.dashboard .notification-bell:hover {
    background: var(--light);
}

.dashboard .notification-badge {
    position: absolute;
    top: 1px;
    right: 3px;
    background: var(--danger-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.dashboard .user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 30px;
    transition: var(--transition);
}

.dashboard .user-menu:hover {
    background: var(--global-bg-color);
}

.dashboard .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-deep-color);
}

.dashboard .user-info {
    display: flex;
    flex-direction: column;
}

.dashboard .user-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.dashboard .user-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

.dashboard .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    width: 200px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10;
    border: 1px solid var(--border);
}

.dashboard .user-menu:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dashboard .dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.dashboard .dropdown li a:hover {
    background: var(--global-bg-color);
    color: var(--primary-deep-color);
}

.dashboard .dropdown li a.logout {
    color: var(--danger-color);
}

.dashboard .welcome-banner {
    background: linear-gradient(135deg, rgb(9 54 94), rgb(82 156 224));
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.dashboard .welcome-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dashboard .welcome-text p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.dashboard .welcome-banner .btn {
    background: white;
    color: var(--primary-deep-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    max-width: 150px;
    font-weight: 600;
}

.dashboard .welcome-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Grid Cards */
.dashboard .grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard .card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--active-border);
}

.dashboard .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dashboard .card-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard .card-header h5 {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.dashboard .card-header i {
    color: var(--primary-deep-color);
    font-size: 1.2rem;
}

.dashboard .card-body {
    padding: 20px;
}

.dashboard .card-body i {
    font-size: 2.5rem;
    color: var(--primary-deep-color);
    opacity: 0.8;
}

.dashboard .card-body h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.dashboard .card-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.dashboard .positive-change {
    color: var(--success-color);
    font-weight: 600;
}

.dashboard .negative-change {
    color: var(--danger-color);
    font-weight: 600;
}

/* Table */
.dashboard .table-card {
    background: white;
    border-radius: 15px;
    overflow-x:scroll;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border);
}

.dashboard .table-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard .table-header h5 {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.dashboard .view-all {
    color: var(--primary-deep-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.dashboard .table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard .table th, .table td {
    padding: 15px 20px;
    text-align: left;
}

.dashboard .table thead {
    background: var(--primary-light-color);
}

.dashboard .table th {
    color: var(--text-color-light);
    border-bottom: 1px solid var(--border);
}

.dashboard .table tbody tr {
    border-bottom: 1px solid var(--border);
}

.dashboard .table tbody tr:last-child {
    border-bottom: none;
}

.dashboard .table tbody tr:hover {
    background: #f9f9f9;
}

.dashboard .status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dashboard .status-completed {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success-color);
}

.dashboard .status-pending {
    background: rgba(243, 156, 18, 0.15);
    color: var(--warning-color);
}

/* Footer */
.dashboard .footer {
  background: white;
  color: var(--text-color-light);
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
}

.dashboard .main-container.expanded {
  margin-left: 0 !important;
  width: 100% !important;
  transition: all 0.3s ease;
}
.dashboard-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-content.active-dashboard-section {
    display: block;
    opacity: 1;
    animation: dashboardFadeIn 0.3s ease-in;
}

@keyframes dashboardFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.dashboard-content.investment-plans .plans-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.dashboard-content.investment-plans .plan-metrics{
    gap: 8px;
}
.dashboard-content.investment-plans .plan-additional-info{
    display: none;
}
.dashboard-content.investment-plans .plan-image{
    height: 150px;
}
/* Style the toggle button */
.header .menu-toggle {
background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color-deep);
    cursor: pointer;
    transition: color 0.3s 
ease;
    padding: 10px 20px;
    max-width: 30px;
}

.header .menu-toggle:hover {
  color: var(--primary-deep-color);
}
/* Dashboard Layout css end*/



/* authentication page css start */

/* Container */
.auth-page {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}
form.auth-form {
    overflow: hidden;
}
/* Header */
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color, #2673b8);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.auth-header p {
    font-size: 0.95rem;
    color: var(--text-color-light, #666);
}

/* Alerts */
.auth-alert {
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.auth-alert.alert-success {
    background-color: var(--success-color, #28a745);
    color: #fff;
}

.auth-alert.alert-error {
    background-color: var(--danger-color, #dc3545);
    color: #fff;
}

/* Form Fields */
.auth-form .form-group {
    margin-bottom: 1rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color-light, #555);
}

.auth-form input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #ccc;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color, #2673b8);
    background-color: #f9faff;
}

/* Checkbox */
.auth-form .form-group.terms-checkbox {
    display: flex;
    align-items: center;
}

.auth-form input#terms-agreement {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-bottom: .5rem;
}

/* Buttons */
.btn-auth {
    width: 100%;
    padding: 0.8rem 0;
    background-color: var(--primary-color, #2673b8);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-auth:hover {
    background-color: var(--primary-dark-color, #1a4d7a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38,115,184,0.3);
}

/* Footer */
.auth-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-color-light, #666);
}

.auth-footer a {
    color: var(--primary-color, #2673b8);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Social Auth */
.social-auth {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    border-radius: var(--radius-md);
    border: 1px solid #ccc;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    background-color: #fff;
}

.social-btn i {
    margin-right: 0.5rem;
}

.social-btn.google-btn {
    color: #DB4437;
}

.social-btn.facebook-btn {
    color: #4267B2;
}

.social-btn:hover {
    background-color: #f0f4ff;
    transform: translateY(-2px);
}

/* Error messages below inputs */
.auth-form .error {
    font-size: 0.8rem;
    color: var(--danger-color, #dc3545);
    margin-top: 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-page {
        padding: 2rem 0rem;
    }

    .auth-container {
        padding: 1.5rem;
        max-width: 100%;
    }
}


/* authentication page css end */


/* home page css start */

/* market list section start */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.tab-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.tab-btn.active {
  background: var(--primary-color);
  color: #fff;
}

.market-card {
  display: block; /* Default show */
}
.market-card.hidden {
  display: none;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.market-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.market-card:hover {
  transform: translateY(-5px);
}

.market-card .card-header {
  padding: 1rem;
  background: var(--primary-light-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.market-card .card-body {
  padding: 1rem;
}

.roi-section {
  text-align: center;
  margin-bottom: 1rem;
}

.roi-percentage {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.details {
  margin: 1rem 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color-light);
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.3rem 0;
}

.card-footer {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  background: var(--primary-light-color);
}
/* Container for the image inside the card */
.market-card .card-image {
    width: 100%;
    height: 180px; /* fixed height for consistency */
    overflow: hidden;
    border-radius: 12px 12px 0 0; /* rounded top corners */
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.market-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image covers the container without distortion */
    transition: transform 0.3s ease;
}

/* Zoom effect on hover */
.market-card .card-image:hover img {
    transform: scale(1.05);
}

/* Optional: overlay effect for text or badges */
.market-card .card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.2));
    pointer-events: none;
    border-radius: 12px 12px 0 0;
}
/* market list section end */

/* home page css end */



/* faq page css start */

.accordion-container  p.open-description{
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(38, 115, 184, 0.3);
    color: var(--text-color-deep);
}

.accordions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	align-items:flex-start;
    gap: 30px;
    margin-bottom: 100px;
}
 .accordion-container  {
    max-width: 400px;
    padding: 25px;
    border: 1px solid rgba(38, 115, 184, 0.7);
    border-radius: 15px;
    box-sizing: border-box;
}

.accordion-container h2 {
    margin-bottom: 5px;
}

.accordion-container .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(38, 115, 184, 0.3);
    margin-bottom: 22px;
    background-color: var(--global-background-color);
    outline: none;
    margin-top: 22px;
}

.accordion-container .accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.accordion-container .accordion-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-container .accordion-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.accordion-container .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out;
    padding-left: 20px;
    margin: 10px 0;
    border-left: 8px solid rgba(38, 115, 184, 0.3);
    font-size: 16px;
    position: relative;
}

.accordion-container .accordion-item.active .accordion-content {
    max-height: 200px; 
    overflow-y: auto;
    scrollbar-width: none; 
}


.accordion-container .accordion-content::-webkit-scrollbar {
    width: 0; 
    display: none;
}


.accordion-container .accordion-content {
    direction: rtl;
}

.accordion-container .accordion-content p {
    direction: ltr;
    margin: 0;
    padding: 10px 0;
}

.accordion-container .accordion-content::-webkit-scrollbar-thumb {
    background-color: #b4c5d6;
    border-radius: 10px;
}

.accordion-container .accordion-item.active .arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-container .arrow {
    transition: transform 0.3s ease;
}
/* faq page css end */


.investment-plans .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.investment-plans .plan-card {
    background: transparent;
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: var(--inactive-border)
}

.investment-plans .plan-card:hover {
    box-shadow: 10px 10px 24px 0px #2673b81a;
    transform: scale(1.005);
    border: var(--active-border);
}

.investment-plans .plan-card.inactive {
    opacity: 0.6;
}

.investment-plans .plan-status, .plan-detail .plan-status {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}
 .plan-detail .plan-status, .plan-detail .coin-reward-badge{
    position: static;
 }
.investment-plans .status-badge, .plan-detail .status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.investment-plans .status-badge.active, .plan-detail .status-badge.active {
    background: #d4edda;
    color: #155724;
}

.investment-plans .status-badge.inactive, .plan-detail .status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.investment-plans .status-badge.expired, .plan-detail .status-badge.expired {
    background: #fff3cd;
    color: #856404;
}

.investment-plans .plan-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}
.investment-plans .plan-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}
.investment-plans .plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investment-plans .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: absolute;
    top: 28%;
    left: 10%;
    color: var(--text-color-white);
}

.investment-plans .plan-category {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.investment-plans .plan-metrics {
    background: #f7fafc;
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom:10px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.investment-plans .metric-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.investment-plans .metric {
    display: flex;
    flex-direction: column;
}

.investment-plans .metric-label {
    font-size: 0.75rem;
    color: #718096;
    margin-bottom: 0.25rem;
}

.investment-plans .metric-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.investment-plans .metric-value.highlight, .investment-plans .metric-value.yes,.investment-plans .metric-value.profit{
    color: var(--primary-color);
    font-size: 1rem
}

.investment-plans .metric-value.no {
    color: #e53e3e;
}

.investment-plans .plan-additional-info {
    margin-bottom: 5px
}

.investment-plans .info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.investment-plans .info-item:last-child {
    margin-bottom: 0;
}

.investment-plans .info-label {
    color: #718096;
    font-size: 0.875rem;
}

.investment-plans .info-value {
    font-weight: 500;
    color: #2d3748;
}

.investment-plans .plan-actions {
    text-align: center;
    display: flex;
    gap: 10px;
}

.investment-plans .no-plans {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #718096;
}

.investment-plans .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.investment-plans .section-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.investment-plans .section-header p {
    font-size: 1.125rem;
    color: #718096;
}

/* Add to your existing CSS */

  /* Coin Balance Styles */
.coin-balance-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}


.coin-icon {
    margin-right: 0.2rem;
}

.coin-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8B4513;
    margin-right: 0.25rem;
}

.coin-label {
    font-size: 0.9rem;
    color: #8B4513;
    font-weight: 600;
}

/* Coin Reward Badge */
.coin-reward-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgb(255, 227, 66);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    display: flex
;
    align-items: center;
    font-size: 0.75rem;
}
.coin-reward-badge .coin-icon i {
    font-size: 1rem;
    color: #8B4513;
}

.coin-reward {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8B4513;
}

/* Coin highlight in metrics */
.metric-value.coin-highlight {
    color: #FFD700;
    font-weight: 700;
}

/* Coin animation for when user earns coins */
@keyframes coinBounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.coin-earned {
    animation: coinBounce 1s;
}

/* Responsive design */
@media (max-width: 768px) {
    .coin-balance {
        padding: 0.5rem 1rem;
    }
    
    .coin-amount {
        font-size: 1.1rem;
    }
    
    .coin-reward-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.3rem 0.6rem;
    }
}




.plan-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.back-button {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #f7fafc;
    border-color: #4299e1;
}

.plan-detail-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}
.plan-detail-content .balance-requirement {
    margin-top: 20px;
}
.plan-overview {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-image-large {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.plan-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-basic-info h1 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.plan-category {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.key-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.key-metric {
    display: flex;
    align-items: center;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid #4299e1;
}

.metric-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #718096;
    font-size: 0.875rem;
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.investment-action-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.investment-action-card h3 {
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.action-metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: var(--radius-md);
}

.action-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-metric span {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.action-metric strong {
    color: #2d3748;
    font-size: 1.125rem;
}

/* .invest-btn:hover:not(:disabled) {
    background: var(--focus-input-bg-color);
} */

.invest-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.details-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.details-section h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.details-grid {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f7fafc;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #718096;
    font-weight: 500;
}

.detail-value {
    color: #2d3748;
    font-weight: 600;
}

.detail-value.yes {
    color: #48bb78;
}

.detail-value.no {
    color: #e53e3e;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f7fafc;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✓";
    color: #48bb78;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.terms-content {
    line-height: 1.6;
    color: #4a5568;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    background: #f7fafc;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
}

.faq-answer {
    padding: 1rem 1.5rem;
    color: #4a5568;
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
}

/* Status badges (same as in cards) */

@media (max-width: 1024px) {
    .plan-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .key-metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .plan-detail-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .action-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .plan-overview,
    .investment-action-card,
    .details-section {
        padding: 1.5rem;
    }
}





/* user dashboard deposit start*/
/* Dashboard Deposit Section Specific Styles */
#dashboard-deposit-section .deposit-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 1.5rem;
}

#dashboard-deposit-section .deposit-form-card,
#dashboard-deposit-section .deposit-info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 2rem;
}

#dashboard-deposit-section .deposit-form-card h3,
#dashboard-deposit-section .deposit-info-card h4 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
}

#dashboard-deposit-section .form-group {
    margin-bottom: 1.5rem;
}

#dashboard-deposit-section .form-group label {
    display: flex;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

#dashboard-deposit-section .input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

#dashboard-deposit-section .input-with-icon i {
    position: absolute;
    left: 1rem;
    color: #6c757d;
    font-size: 1.1rem;
}

#dashboard-deposit-section .input-with-icon input {
    padding-left: 3rem;
    width: 100%;
}

#dashboard-deposit-section .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#dashboard-deposit-section .form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#dashboard-deposit-section .form-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Payment Methods Grid */
#dashboard-deposit-section .payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

#dashboard-deposit-section .payment-method-option {
    position: relative;
}

#dashboard-deposit-section .payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

#dashboard-deposit-section .payment-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

#dashboard-deposit-section .payment-label:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

#dashboard-deposit-section .payment-method-option input[type="radio"]:checked + .payment-label {
    border-color: #667eea;
    background: #f0f4ff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

#dashboard-deposit-section .payment-label i {
    font-size: 1.5rem;
    color: #667eea;
}

#dashboard-deposit-section .payment-label span {
    font-weight: 500;
    color: #2c3e50;
}

/* File Upload Styles */
#dashboard-deposit-section .file-upload-area {
    margin-top: 0.5rem;
}

#dashboard-deposit-section .file-input {
    display: none;
}

#dashboard-deposit-section .file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    background: #fafbfc;
}

#dashboard-deposit-section .file-upload-label:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

#dashboard-deposit-section .file-upload-label i {
    font-size: 2rem;
    color: #6c757d;
}

#dashboard-deposit-section .file-upload-label span {
    font-weight: 500;
    color: #2c3e50;
}

#dashboard-deposit-section .file-upload-label small {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Payment Address Section */
#dashboard-deposit-section .payment-address-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

#dashboard-deposit-section .address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

#dashboard-deposit-section .address-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

#dashboard-deposit-section .btn-copy {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: background 0.3s;
    max-width: 142px;
}

#dashboard-deposit-section .btn-copy:hover {
    background: #5a6fd8;
}

#dashboard-deposit-section .btn-copy.copied {
    background: #28a745;
}

#dashboard-deposit-section .address-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

#dashboard-deposit-section .address-display {
    flex: 1;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

#dashboard-deposit-section .address-display code {
    word-break: break-all;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.4;
}

#dashboard-deposit-section .address-qr {
    flex-shrink: 0;
}

#dashboard-deposit-section .address-qr img {
    width: 120px;
    height: 120px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.5rem;
    background: white;
}

#dashboard-deposit-section .address-instructions {
    margin-top: 1rem;
    padding: 1rem;
    background: #e7f3ff;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

#dashboard-deposit-section .address-instructions h5 {
    margin: 0 0 0.5rem 0;
    color: #0056b3;
    font-size: 0.9rem;
}

#dashboard-deposit-section .address-instructions p {
    margin: 0;
    font-size: 0.8rem;
    color: #495057;
    line-height: 1.4;
}

/* Info Card Styles */
#dashboard-deposit-section .info-list {
    margin-bottom: 2rem;
}

#dashboard-deposit-section .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

#dashboard-deposit-section .info-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.25rem;
}

#dashboard-deposit-section .info-item strong {
    display: block;
    font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

#dashboard-deposit-section .info-item p {
    margin: 0;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Deposit Steps */
#dashboard-deposit-section .deposit-steps {
    margin: 2rem 0;
}

#dashboard-deposit-section .step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

#dashboard-deposit-section .step-number {
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

#dashboard-deposit-section .step-content strong {
    display: block;
    font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

#dashboard-deposit-section .step-content p {
    margin: 0;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Current Balance */
#dashboard-deposit-section .current-balance {
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

#dashboard-deposit-section .current-balance h5 {
    margin: 0 0 1rem 0;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

#dashboard-deposit-section .balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
}

/* Buttons */
#dashboard-deposit-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

#dashboard-deposit-section .primary-btn {
    background: #667eea;
    color: white;
}

#dashboard-deposit-section .primary-btn:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

#dashboard-deposit-section .btn-block {
    width: 100%;
    justify-content: center;
}

#dashboard-deposit-section .no-payment-methods {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    grid-column: 1 / -1;
}

#dashboard-deposit-section .no-payment-methods i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #dee2e6;
    display: block;
}

#dashboard-deposit-section .mt-3 {
    margin-top: 1rem;
}

/* Deposit History Section Styles */
#deposit-history-section .history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

#deposit-history-section .stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    border-left: 4px solid #667eea;
}

#deposit-history-section .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

#deposit-history-section .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Table Styles */
#deposit-history-section .table-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

#deposit-history-section .table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1rem;
}

#deposit-history-section .table-header h5 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

#deposit-history-section .table-actions {
    display: flex;
    gap: 0.5rem;
}

#deposit-history-section .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
}

#deposit-history-section .btn-sm:hover {
    background: #e9ecef;
}

#deposit-history-section .card-body {
    padding: 0 1.5rem 1.5rem;
}

#deposit-history-section .table-responsive {
    overflow-x: auto;
}

#deposit-history-section .table {
    width: 100%;
    border-collapse: collapse;
}

#deposit-history-section .table th {
    background: #f8f9fa;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #dee2e6;
}

#deposit-history-section .table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f3f4;
    font-size: 0.9rem;
    vertical-align: middle;
}

#deposit-history-section .table tbody tr:hover {
    background: #f8f9fa;
}

/* Payment Method Badge */
#deposit-history-section .payment-method-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #f0f4ff;
    color: #667eea;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

#deposit-history-section .payment-method-badge i {
    font-size: 1rem;
}

/* Status Badges */
#deposit-history-section .status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: capitalize;
}

#deposit-history-section .status-pending {
    background: #fff3cd;
    color: #856404;
}

#deposit-history-section .status-completed {
    background: #d1edff;
    color: #0c5460;
}

#deposit-history-section .status-approved {
    background: #d4edda;
    color: #155724;
}

#deposit-history-section .status-rejected {
    background: #f8d7da;
    color: #721c24;
}

#deposit-history-section .status-processing {
    background: #e2e3e5;
    color: #383d41;
}

/* Transaction ID */
#deposit-history-section .transaction-id {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #495057;
}

/* Proof Link */
#deposit-history-section .proof-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #667eea;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}

#deposit-history-section .proof-link:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* No Data State */
#deposit-history-section .no-data {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

#deposit-history-section .no-data i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #dee2e6;
    display: block;
}

#deposit-history-section .no-data h4 {
    margin: 0 0 0.5rem 0;
    color: #495057;
    font-size: 1.25rem;
}

#deposit-history-section .no-data p {
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
}

/* Text Colors */
#deposit-history-section .text-muted {
    color: #6c757d !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #dashboard-deposit-section .deposit-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #dashboard-deposit-section .deposit-info-card {
        order: -1;
    }
}

@media (max-width: 768px) {
    #dashboard-deposit-section .address-content {
        flex-direction: column;
    }
    
    #dashboard-deposit-section .address-qr {
        align-self: center;
    }
    
    #dashboard-deposit-section .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    #dashboard-deposit-section .deposit-form-card,
    #dashboard-deposit-section .deposit-info-card {
        padding: 1.5rem;
    }
    
    #deposit-history-section .history-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    #deposit-history-section .table-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    #deposit-history-section .table th,
    #deposit-history-section .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    #deposit-history-section .payment-method-badge,
    #deposit-history-section .status-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 480px) {
    #dashboard-deposit-section .address-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    #dashboard-deposit-section .btn-copy {
        align-self: stretch;
        justify-content: center;
    }
    
    #deposit-history-section .stat-box {
        padding: 1rem;
    }
    
    #deposit-history-section .stat-value {
        font-size: 1.5rem;
    }
}
#dashboard-deposit-section .btn-copy.copy-error {
    background: #dc3545;
}

#dashboard-deposit-section .btn-copy.copy-error:hover {
    background: #c82333;
}
/* user dashboard deposit end */



/* dashboard investment css start */
/* ===== INVESTMENT SECTIONS STYLES ===== */
/* Using your root color variables */

/* Investment Statistics */
.investment-stats-grid,
.investment-history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.investments-section .section-subheader {
    display: flex;
    justify-content: space-between;
}
.investment-stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-deep-color));
    padding: 1.5rem;
    border-radius: var(--redius-lg);
    color: var(--text-color-white);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: var(--active-border);
}

.investment-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(38, 115, 184, 0.3);
}

.investment-stat-icon {
    font-size: 2.5rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investment-stat-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.investment-stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
}

.investment-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Investment Cards Grid */
.investment-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.investment-card {
    background: white;
    border-radius: var(--redius-lg);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    border: var(--inactive-border);
}

.investment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 115, 184, 0.3);
    border: var(--active-border);
}

.investment-card.pending {
    border-left-color: var(--warning-color);
}

.investment-card.running {
    border-left-color: var(--success-color);
}

.investment-card.completed {
    border-left-color: var(--primary-color);
}

.investment-card.cancelled {
    border-left-color: var(--danger-color);
}

/* Investment Card Header */
.investment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--separator-color);
}

.investment-plan-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color-deep);
    font-size: 1.1rem;
    font-weight: 600;
}

.investment-category-badge {
    background: var(--primary-light-color);
    color: var(--primary-deep-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    border: var(--inactive-border);
}

/* Investment Status Badges */
.investment-status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.investment-status-pending { 
    background: rgba(255, 169, 43, 0.1); 
    color: var(--warning-color);
    border: 1px solid rgba(255, 169, 43, 0.3);
}

.investment-status-running { 
    background: rgba(0, 192, 74, 0.1); 
    color: var(--success-color);
    border: 1px solid rgba(0, 192, 74, 0.3);
}

.investment-status-completed { 
    background: var(--primary-light-color); 
    color: var(--primary-deep-color);
    border: var(--inactive-border);
}

.investment-status-cancelled { 
    background: rgba(229, 43, 43, 0.1); 
    color: var(--danger-color);
    border: 1px solid rgba(229, 43, 43, 0.3);
}

.investment-status-suspended { 
    background: rgba(153, 153, 153, 0.1); 
    color: var(--text-color-light);
    border: 1px solid rgba(153, 153, 153, 0.3);
}

/* Investment Details */
.investment-details {
    margin-bottom: 1.5rem;
}

.investment-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.investment-detail-item {
    display: flex;
    flex-direction: column;
}

.investment-detail-label {
    font-size: 0.8rem;
    color: var(--text-color-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.investment-detail-value {
    font-weight: 600;
    color: var(--text-color-deep);
    font-size: 1rem;
}

/* Progress Section */
.investment-progress-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--primary-light-color);
    border-radius: var(--radius-md);
    border: var(--inactive-border);
}

.investment-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color-deep);
}

.investment-progress-bar {
    height: 8px;
    background: rgba(38, 115, 184, 0.2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.investment-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-deep-color));
    border-radius: var(--radius-sm);
    transition: width 0.3s ease;
}

.investment-progress-dates {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-color-light);
}

/* Next Payout */
.investment-next-payout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--primary-light-color);
    border-radius: var(--radius-md);
    color: var(--primary-deep-color);
    font-size: 0.9rem;
    font-weight: 500;
    border: var(--inactive-border);
}

/* Investment Actions */
.investment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--separator-color);
}

.investment-btn-view {
    background: var(--primary-color);
    color: var(--text-color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.investment-btn-view:hover {
    background: var(--primary-deep-color);
    color: var(--text-color-white);
    text-decoration: none;
}

.investment-auto-renew-badge {
    background: rgba(0, 192, 74, 0.1);
    color: var(--success-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid rgba(0, 192, 74, 0.3);
}

/* Investment History Styles */
.investment-history-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: var(--primary-light-color);
    border-radius: var(--radius-md);
    border: var(--inactive-border);
}

.investment-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.investment-filter-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color-deep);
}

.investment-filter-select {
    padding: 0.5rem;
    border: var(--inactive-border);
    border-radius: var(--radius-md);
    background: white;
    color: var(--text-color-deep);
    font-size: 0.9rem;
    transition: var(--transition);
}

.investment-filter-select:focus {
    border: var(--active-border);
    background: var(--focus-input-bg-color);
}

.investment-btn-reset {
    background: var(--text-color-light);
    color: var(--text-color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    align-self: flex-end;
    border: none;
    cursor: pointer;
}

.investment-btn-reset:hover {
    background: var(--text-color-deep);
    color: var(--text-color-white);
    text-decoration: none;
}

/* Investment History Table */
.investment-history-table-container {
    overflow-x: auto;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--box-shadow);
    border: var(--inactive-border);
}

.investment-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.investment-history-table th {
    background: var(--primary-light-color);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-deep-color);
    border-bottom: 1px solid var(--separator-color);
    font-size: 0.9rem;
}

.investment-history-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--separator-color);
    font-size: 0.9rem;
    color: var(--text-color-deep);
}

.investment-history-row:hover {
    background: var(--primary-light-color);
}

.investment-plan-name strong {
    color: var(--text-color-deep);
}

.investment-category-tag {
    background: var(--primary-light-color);
    color: var(--primary-deep-color);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    border: var(--inactive-border);
}

.investment-amount-cell .investment-amount {
    font-weight: 600;
    color: var(--text-color-deep);
}

.investment-returns-cell .investment-actual-return {
    font-weight: 600;
    color: var(--success-color);
}

.investment-returns-cell .investment-expected-return {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color-light);
    margin-top: 0.25rem;
}

.investment-action-buttons {
    display: flex;
    gap: 0.5rem;
}

.investment-btn-action {
    background: var(--primary-light-color);
    border: var(--inactive-border);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    color: var(--primary-deep-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.investment-btn-action:hover {
    background: var(--primary-color);
    color: var(--text-color-white);
    border: var(--active-border);
    text-decoration: none;
}

.investment-auto-renew-indicator {
    background: rgba(0, 192, 74, 0.1);
    color: var(--success-color);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 192, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty States */
.investment-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-color-light);
    background: white;
    border-radius: var(--redius-lg);
    border: var(--inactive-border);
}

.investment-empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--primary-color);
}

.investment-empty-state h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color-deep);
    font-size: 1.5rem;
}

.investment-empty-state p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.investment-btn-primary {
    background: var(--primary-color);
    color: var(--text-color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}
.investment-btn-primary i{
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-color-white);
}
.investment-btn-primary:hover {
    background: var(--primary-deep-color);
    color: var(--text-color-white);
    text-decoration: none;
}

.investment-btn-secondary {
    background: var(--text-color-light);
    color: var(--text-color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.investment-btn-secondary:hover {
    background: var(--text-color-deep);
    color: var(--text-color-white);
    text-decoration: none;
}

/* Pagination */
.investment-history-pagination {
    margin-top: 1.5rem;
    border-top: 1px solid var(--separator-color);
    padding: 1rem;
}

.investment-pagination-info {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .investment-stats-grid,
    .investment-history-stats {
        grid-template-columns: 1fr;
    }
    
    .investment-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-detail-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .investment-history-filters {
        flex-direction: column;
    }
    
    .investment-history-table {
        font-size: 0.8rem;
    }
    
    .investment-history-table th,
    .investment-history-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .investment-card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .investment-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .investment-stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .investment-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .investment-stat-value {
        font-size: 1.5rem;
    }
}
/* dashboard investment css end */



/* ===== WITHDRAWAL SECTIONS STYLES ===== */
/* Using your root color variables */

.withdrawal-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 1.5rem;
}

.withdrawal-form-card,
.withdrawal-info-card {
    background: white;
    border-radius: var(--redius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: var(--inactive-border);
}

.withdrawal-form-card h3,
.withdrawal-info-card h4 {
    color: var(--primary-deep-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

/* Withdrawal Methods */
.withdrawal-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.withdrawal-method-option input[type="radio"] {
    display: none;
}

.withdrawal-method-option input[type="radio"]:checked + .withdrawal-label {
    border: var(--active-border);
    background: var(--primary-light-color);
}

.withdrawal-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: var(--inactive-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.withdrawal-label:hover {
    border: var(--active-border);
    background: var(--primary-light-color);
}

.withdrawal-label i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.withdrawal-label span {
    font-weight: 500;
    color: var(--text-color-deep);
}

/* Balance Info */
.balance-info {
    background: var(--primary-light-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: var(--inactive-border);
    margin: 1.5rem 0;
}

.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.balance-item:not(:last-child) {
    border-bottom: 1px solid var(--separator-color);
}

.balance-label {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.balance-amount {
    font-weight: 600;
    color: var(--text-color-deep);
    font-size: 1rem;
}

/* Withdrawal Buttons */
.withdrawal-btn-primary {
    background: var(--primary-color);
    color: var(--text-color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
}

.withdrawal-btn-primary:hover {
    background: var(--primary-deep-color);
    color: var(--text-color-white);
    text-decoration: none;
}

.withdrawal-btn-primary:disabled {
    background: var(--text-color-light);
    cursor: not-allowed;
}

/* Withdrawal Statistics */
.withdrawal-history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.withdrawal-stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-deep-color));
    padding: 1.5rem;
    border-radius: var(--redius-lg);
    color: var(--text-color-white);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: var(--active-border);
}

.withdrawal-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(38, 115, 184, 0.3);
}

.withdrawal-stat-icon {
    font-size: 2.5rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.withdrawal-stat-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.withdrawal-stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
}

.withdrawal-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Withdrawal History Table */
.withdrawal-history-table-container {
    overflow-x: auto;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--box-shadow);
    border: var(--inactive-border);
}

.withdrawal-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.withdrawal-history-table th {
    background: var(--primary-light-color);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-deep-color);
    border-bottom: 1px solid var(--separator-color);
    font-size: 0.9rem;
}

.withdrawal-history-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--separator-color);
    font-size: 0.9rem;
    color: var(--text-color-deep);
}

.withdrawal-history-row:hover {
    background: var(--primary-light-color);
}

/* Withdrawal Status Badges */
.withdrawal-status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.withdrawal-status-pending { 
    background: rgba(255, 169, 43, 0.1); 
    color: var(--warning-color);
    border: 1px solid rgba(255, 169, 43, 0.3);
}

.withdrawal-status-completed { 
    background: rgba(0, 192, 74, 0.1); 
    color: var(--success-color);
    border: 1px solid rgba(0, 192, 74, 0.3);
}

.withdrawal-status-failed { 
    background: rgba(229, 43, 43, 0.1); 
    color: var(--danger-color);
    border: 1px solid rgba(229, 43, 43, 0.3);
}

/* Withdrawal Method Badges */
.withdrawal-method-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light-color);
    color: var(--primary-deep-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: var(--inactive-border);
}

/* Wallet Address and Transaction ID */
.wallet-address,
.withdrawal-history-row .transaction-id {
    background: var(--global-bg-color);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-color-deep);
}

/* Withdrawal Steps */
.withdrawal-steps {
    margin: 1.5rem 0;
}

.withdrawal-steps h5 {
    color: var(--primary-deep-color);
    margin-bottom: 1rem;
}

.withdrawal-steps .step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.withdrawal-steps .step-number {
    background: var(--primary-color);
    color: var(--text-color-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.withdrawal-steps .step-content strong {
    color: var(--text-color-deep);
    display: block;
    margin-bottom: 0.25rem;
}

.withdrawal-steps .step-content p {
    color: var(--text-color-light);
    font-size: 0.8rem;
    margin: 0;
}

/* Withdrawal Limits */
.withdrawal-limits {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--separator-color);
}

.withdrawal-limits h5 {
    color: var(--primary-deep-color);
    margin-bottom: 1rem;
}

.withdrawal-limits .limit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.withdrawal-limits .limit-item:not(:last-child) {
    border-bottom: 1px solid var(--separator-color);
}

.withdrawal-limits .limit-item span {
    color: var(--text-color-light);
}

.withdrawal-limits .limit-item strong {
    color: var(--text-color-deep);
}

/* Empty State */
.withdrawal-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-color-light);
    background: white;
    border-radius: var(--redius-lg);
    border: var(--inactive-border);
}

.withdrawal-empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--primary-color);
}

.withdrawal-empty-state h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color-deep);
    font-size: 1.5rem;
}

.withdrawal-empty-state p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Pagination */
.withdrawal-history-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--separator-color);
}

.withdrawal-pagination-info {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .withdrawal-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .withdrawal-history-stats {
        grid-template-columns: 1fr;
    }
    
    .withdrawal-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .withdrawal-history-table {
        font-size: 0.8rem;
    }
    
    .withdrawal-history-table th,
    .withdrawal-history-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .withdrawal-stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .withdrawal-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .withdrawal-stat-value {
        font-size: 1.5rem;
    }
    
    .withdrawal-form-card,
    .withdrawal-info-card {
        padding: 1.5rem;
    }
}



/* global css -> packages, library etc */
.iti{
  width: 100%;
}
.iti__country-list{
  border: none;
}

