.nav-link.active {
    background-color: #007bff; /* Bootstrap primary color */
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
}

.dashboard-body{
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 0;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    /* border: 2px red solid; */
}
.dashboard-row{
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    align-items: flex-start;
}
.dashboard-sidebar{
    /* flex: 0 0 230px; */
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: 100vh;
    border: 3px solid rgba(0, 0, 0, 0.1); 
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    width: 15%;
  
    h6{
        font-size: 20px;
        font-weight: 600;
        color: #495057;
        margin-bottom: 20px;
    }
}
.dashboard-right{
    height: 100vh;
    padding: 20px;
    /* border: 1px red solid; */
    width: 85%;
    display: flex;
    overflow: scroll;


}
.dashboard-right::-webkit-scrollbar {
    display: none;
}
.dashboard-sidebar a{
    display: block;
    padding: 10px ;
    color: #0080ff;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    margin-top: 4px;
    font-weight: 600;
}

.nav .nav-item{
    list-style-type: none;
}
.dashboard-side-items{
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    overflow: scroll;
}
.dashboard-side-items::-webkit-scrollbar{
    display: none;
}

/*========== RESPONSIVE SELLER DASHBOARD ==========*/
@media (max-width: 1024px) {
  .dashboard-sidebar {
    width: 20%;
  }
  .dashboard-right {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .dashboard-row {
    flex-direction: column;
  }
  .dashboard-sidebar {
    width: 100%;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  .dashboard-sidebar h6 {
    display: none;
  }
  .dashboard-side-items {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
  }
  .dashboard-sidebar a {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 13px;
  }
  .dashboard-right {
    width: 100%;
    padding: 10px;
  }
  .dashboard-body {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
}

@media (max-width: 480px) {
  .dashboard-sidebar {
    padding: 8px;
  }
  .dashboard-sidebar a {
    font-size: 12px;
    padding: 6px 8px;
  }
  .dashboard-right {
    padding: 8px;
  }
}