.sidebar-menu {
    position:fixed;
    top:0;
    left:0;
    height:100vh;
    background: #ffffff;
    padding-left:15px;
    padding-right:15px;
    padding-top:10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, color 0.3s ease;
    width:15%;
    z-index:100;
    display: flex;
    flex-direction: column;
}

.menu-btn-close{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to top, #e10000, #ff2b2b);
    color: white;
    border: none;
    display:none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}
.menu-btn-close:hover{
    background: linear-gradient(to top, #7f00ff, #00c6ff);
}

.sidebar-scroll-content {
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}

.sidebar-scroll-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

body.dark-mode .sidebar-menu {
    background: #1e1e1e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.sidebar-menu::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, #7f00ff, #00c6ff);
}
.sidebar-menu h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}
body.dark-mode .sidebar-menu h5 {
    color:#fff;
}
/* creators menu */
.sidebar-menu-creators{
    margin-top:10px;
}
.sidebar-menu-creators ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu-creators ul li a {
    display: flex;
    align-items: center;
    padding-top: 7px;
    padding-bottom:7px;
    padding-left:15px;
    padding-right:15px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
    border-radius: 10px;
}
body.dark-mode .sidebar-menu-creators ul li a{
    color:#fff;
}
.sidebar-menu-creators ul li i {
    color:#7f00ff;
}
body.dark-mode .sidebar-menu-creators ul li i {
    color:#00c6ff;
}
.sidebar-menu-creators ul li a:hover i {
    color: #fff;
}
.sidebar-menu-creators ul li a:hover {
    background: linear-gradient(to right, #7f00ff, #00c6ff)!important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2)!important;
    transform: translateY(-2px)!important;
    color:white!important;
}
/*account menu*/
.sidebar-menu-account{
    margin-top:10px;
}
.sidebar-menu-account ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu-account ul li a {
    display: flex;
    align-items: center;
    padding-top: 7px;
    padding-bottom:7px;
    padding-left:15px;
    padding-right:15px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
    border-radius: 10px;
}
body.dark-mode .sidebar-menu-account ul li a{
    color:#fff;
}
.sidebar-menu-account ul li i {
    color:#7f00ff;
}
body.dark-mode .sidebar-menu-account ul li i {
    color:#00c6ff;
}
.sidebar-menu-account ul li a:hover i {
    color: #fff;
}
.sidebar-menu-account ul li a:hover {
    background: linear-gradient(to right, #7f00ff, #00c6ff)!important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2)!important;
    transform: translateY(-2px)!important;
    color:white!important;
}
/* general menu 
.sidebar-menu-general{
    margin-top:10px;
}*/
.sidebar-menu-general ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu-general ul li a {
    display: flex;
    align-items: center;
    padding-top: 7px;
    padding-bottom:7px;
    padding-left:15px;
    padding-right:15px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
    border-radius: 10px;
}
body.dark-mode .sidebar-menu-general ul li a{
    color:#fff;
}
.sidebar-menu-general ul li i {
    color:#7f00ff;
}
body.dark-mode .sidebar-menu-general ul li i {
    color:#00c6ff;
}
.sidebar-menu-general ul li a:hover i {
    color: #fff;
}
.sidebar-menu-general ul li a:hover {
    background: linear-gradient(to right, #7f00ff, #00c6ff)!important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2)!important;
    transform: translateY(-2px)!important;
    color:white!important;
}
.side-icon{
    width:25%;
    float:left;
}
.side-text{
    width:75%;
    float:left;
}
.custom-full-logo{
    width:100%;
    margin-top:6px;
    margin-bottom:6px;
}
.custom-full-logo img{
    width:100%;
    max-width:250px;
}
.custom-full-profile img{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    margin-top:10px;
    transition: transform 0.3s ease;
}
.custom-full-profile img:hover {
    transform: scale(1.05);
}
.custom-full-profile{
    text-align: center;
}

/* Footer */
.sidebar-footer{
    margin-top:10px;
}
.sidebar-footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top:-20px;
}
.sidebar-footer-menu ul li {
    display: inline;
    margin-right:8px;
}
.sidebar-footer-menu ul li a {
    font-size: 12px;
    color: #888;
}
body.dark-mode .sidebar-footer-menu ul li a{
    color:#fff;
}
.sidebar-full{
    width:100%;
}
.sidebar-copyright p {
    color:#333;
}
body.dark-mode .sidebar-copyright p {
    color:#fff;
}
/* Theme toggle switch */
.theme-toggle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top:-20px;
}
.theme-toggle small {
    color:#333;
}
body.dark-mode .theme-toggle small {
    color:#fff;
}
.theme-left{
    width:75%;
    float:left;
}
.theme-right{
    width:25%;
    float:left;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  transition: .4s;
  border-radius: 26px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: white;
  transition: .4s;
  top: 3px;
  left: 3px;
}
input:checked + .slider {
  background: linear-gradient(to right, #7f00ff, #00c6ff);
}

input:checked + .slider:before {
  transform: translateX(24px);
}
@media screen and (max-width: 767px){
    .menu-btn-close-right{
        width:30px!important;
        height:30px!important;
        padding:0px!important;
    }
    .menu-btn-close-right i{
        font-size:12px;
    }
    .menu-btn-close{
        width:30px;
        height:30px;
        padding:0px;
    }
    .menu-btn-close i{
        font-size:12px;
    }
}