/* Page Layout */
.body-sideacc {
    font-family: sans-serif;
    background-color: black;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Main Flex Container */
  .wrapper-sideacc {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Sidebar Container */
  .sidebar-sideacc {
    width: 70px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 20px;
    gap: 20px;
  }
  
  /* Wrapper for each icon */
  .iconwrapper-sideacc {
    padding: 15px;
    border-radius: 10px;
  }
  
  /* Selected style */
  .selected-sideacc {
    background: linear-gradient(270.28deg, #85B7CC 0.24%, rgba(133, 183, 204, 0.5) 91.94%);
  }
  
  /* Sidebar Icons */
  .icon-sideacc {
    width: 30px;
    cursor: pointer;
  }
  
  /* Main Content Area */
  .maincontent-sideacc {
    flex: 1;
    background-color: #FAFAFA;
    padding: 20px;
    overflow-x: auto;
    min-width: 0; /* Allows flex item to shrink below content size */
  }

  .others-section-editaccount{
    display:none;
  }

  /* Tablet and Mobile Responsive */
  @media (max-width: 1024px) {
    .wrapper-sideacc {
      flex-direction: column;
    }
    
    .sidebar-sideacc {
      width: 100%;
      height: auto;
      flex-direction: row;
      justify-content: center;
      padding: 10px 20px;
      gap: 15px;
    }
    
    .maincontent-sideacc {
      padding: 15px;
    }
  }

  @media (max-width: 768px) {
    .wrapper-sideacc {
      flex-direction: column;
      min-height: 100vh;
    }
    
    .sidebar-sideacc {
      display: none;
    }
    
    .maincontent-sideacc {
      padding: 10px;
      background-color: #FAFAFA;
      width: 100%;
      overflow-x: hidden;
    }
    
    .others-section-editaccount {
      display: block;
      margin-top: 2rem;
      padding: 1rem 0;
      background-color: transparent;
    }
    
    .others-title-editaccount {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #374151;
    }
    
    .others-content-editaccount {
      background-color: white;
      border-radius: 12px;
      padding: 0.5rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .iconwrapper-sideacc {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      border-radius: 10px;
      cursor: pointer;
      transition: background-color 0.2s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }
    
    .iconwrapper-sideacc:hover,
    .iconwrapper-sideacc:active {
      background-color: #f3f4f6;
    }
    
    .icon-sideacc {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    
    .icon-label-editaccount {
      font-size: 16px;
      font-weight: 500;
      color: #374151;
    }
  }

  @media (max-width: 480px) {
    .maincontent-sideacc {
      padding: 5px;
    }
    
    .others-section-editaccount {
      margin-top: 1rem;
      padding: 0.5rem 0;
    }
    
    .others-title-editaccount {
      font-size: 18px;
      margin-bottom: 0.75rem;
    }
    
    .iconwrapper-sideacc {
      padding: 0.75rem;
    }
    
    .icon-sideacc {
      width: 20px;
      height: 20px;
    }
    
    .icon-label-editaccount {
      font-size: 15px;
    }
  }
  