@media screen and (max-width: 767px) {

  .avatar-info {
    flex-direction: column;
  }

  .avatar-upload {
    text-align: left;
  }

  .buttons {
    padding: 15px;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {


  .avatar-upload {
    text-align: center;
  }

  .user-photo-detail {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .card-header {
    flex-direction: column;
  }
.buttons {
	padding: 15px;
	gap: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
}





/* ===== Mobile First Fix ===== */

.dashboard-wrap {
  display: flex;
  flex-direction: row;
}

/* Sidebar */
.dashboard-nav {
  width: 260px;
  min-height: 100vh;
  transition: all 0.3s ease;
}

/* Content */

/* Mobile Toggle Button */
.mob-navigation {
  display: none;
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 999;
  background: #ff6f00;
  color: #fff;
  padding: 10px 12px;
  border-radius: 5px;
}

/* Header Fix */
.header .nav-brand img {
  max-width: 140px;
}

/* ===== Mobile View ===== */
@media screen and (max-width: 992px) {

  .dashboard-wrap {
    flex-direction: column;
  }

  .dashboard-nav {
    position: fixed;
    left: -260px;
    top: 0;
    height: 100%;
    z-index: 1000;
    background: #172228;
  }

  .dashboard-nav.active {
    left: 0;
  }

  .mob-navigation {
    display: block;
  }

  .nav-menus-wrapper {
    display: none;
  }

  .mob-navigation-button {
    width: 49px;
    background: none;
    align-items: center;
    left: 86%;
    top: 8px;
    color: #0d6efd;
  }







}

/* ===== Small Mobile ===== */
@media screen and (max-width: 576px) {

  .header .btn {
    font-size: 12px;
  }


  .logo {
    max-width: 120px;
  }
}

@media screen and (max-width: 992px) {

  .nav-menus-wrapper {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    display: none;
  }

  .nav-menus-wrapper.active {
    display: block;
  }

  .dashboard-nav ul::before {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 18px !important;
    letter-spacing: 0 !important;
    background: #212121;
    padding: 10px 10px;
  }

  /* 
    
      
      .dashboard-nav ul::before {
	color: #fff !important;
	letter-spacing: 0 !important;
	background: #212121;
	
}
      .dashboard-nav ul li a { color: #212121 !important; }
      .dashboard-nav ul li.active a, .dashboard-nav ul li:hover a { color: #212121 !important; } */

}


@media screen and (max-width: 1023px) {

  .dashboard-content {
    width: 100%;
    padding: 15px;
  }
}

@media screen and (max-width: 1400px) {

  .profile-tabs-wrapper {
    padding: 10px !important;
  }
}