@import url('https://fonts.googleapis.com/css2?family=Vazirmatn&display=swap');
.menu-toggle {
  font-size: 30px;
  color: #fff !important;

  cursor: pointer;
  padding : 10px 16px 14px 16px;

  border-radius: 10px;
  background: transparent;
  color: white;
  z-index: 1001;

}
.menu-toggle:hover {
  background: #Be202d;

}

.sidebar {
  position: fixed;
  top: 0;
  right: -350px; /* Start hidden */
  width: 250px;
  height: 100%;
  background: #58181F			;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 0px;
  visibility: hidden;
  box-shadow: -4px 0 12px rgba(200, 0, 0, 0.25);
  border-top-left-radius: 35px;
  border-bottom-left-radius: 15px;

}

body.js-enabled .sidebar {
  visibility: visible;
}

.sidebar.active {
  right: 0; /* Slide in */
}
.sidebar ul {
  list-style: none;
  padding: 0;
  padding-bottom : 5px;
  padding-bottom : 5px;

  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;     /* horizontal centering */
}

.sidebar ul li {
  width: 100%;
}

.sidebar ul li a {
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 20px;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
  border-radius : 4px;
}

.sidebar ul li a:hover {
  background: #Be202d;
  color: white;
  
}
.profile-image {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: 35px;
  

}

.profile-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #Be202d;
  box-shadow: 0 0 10px rgba(255, 80, 80, 0.5), 0 0 4px rgba(255, 80, 80, 0.3);
  
}
.ekit-close {
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
  transition: background 0.3s ease;
  padding: 5px 12px 7px 12px;
  border-radius: 14px;
  width : 20px;
}

.ekit-close:hover {
  background: #Be202d;
  color: white;
}
.ee {
 text-align : left;
 padding : 6px;
 margin-top : 40px;
 color : #fff !important;
 
}
ul li .icon {
  font-size: 20px;
  color: #fff;
  background-color: #58181f;
  padding: 10px;
  display: inline-block;
  margin-top: 8px;
  transition: background-color 0.3s, transform 0.3s;
}
ul li .icon:hover {
  background-color: #800000;
}
.fasele::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #Be202d;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 80, 80, 0.5), 0 0 4px rgba(255, 80, 80, 0.3);
}
.fasele {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 100%;
  margin-top: 12px;
}
.fasele a {
    display :inline !important;
    width : auto !important;
    border-radius : 15px !important;
}
@media (max-width: 600px) {
  .sidebar {
    width: 200px;
    border-top-left-radius: 50px;
    overflow-y: auto; /* enables vertical scroll if needed */**
  }