
.nav {
    display: flex; /* Aligns nav items horizontally */
    flex-wrap: nowrap; /* Prevents wrapping to next line */
    white-space: nowrap; /* Prevents text wrapping */
}

/* Optional: Style the buttons to ensure they don't shrink */
.nav-link {
    flex: 0 0 auto; /* Prevents buttons from shrinking */
    margin-left: 5px;
    margin-right: 5px;
}
    
    .section {
      border-radius: 10px;
      margin-bottom: 10px;
    }

    .section h3 {
      margin: 0 0 15px 0;
      text-align:center;
      font-size: 18px;
      color: #e6e6e6;
    }
   
    .deposit-btn {
      background: var(--theme-color);
      color: black;
      text-align: center;
      padding: 15px;
      font-weight: bold;
      border-radius: 10px;
      cursor: pointer;
       box-shadow:
    inset 0 5px 10px rgba(0, 0, 0, 0.6),
    inset 0 -5px 10px rgba(255, 255, 255, 0.05),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
    }
    

.nav-link {
    width:95%;
     border-radius: 0px !important;
    color: white !important;
    border: 2px solid transparent;
    background-color: transparent !important; 
    padding:15px !important;
    /*color: #fff; */
}
 
.nav-link.active {
    
    background-color: transparent !important; 
    border-bottom: 2px solid var(--theme-color);
    width:95%;
    color: var(--theme-color);
}
  
       .btn {
        padding: 0;
        width: 60px; 
        height: 60px; 
        /*border-radius: 50%; */
        font-size: 15px; 
        display: flex;
        color:black;
        align-items: center;
        justify-content: center;
            
        }
         .number{
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }
   .balance {
      background: var(--theme-color);
      padding: 20px;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .balance h3 {
      margin: 0;
      color: black;
    }
