@font-face {
  font-family: 'IRANSansX';
  src: url('../../fonts/IRANSansX.woff2') format('woff2');
}

@font-face {
  font-family: 'Morabba';
  src: url('../../fonts/Morabba.woff2') format('woff2');
}

.sidebar {
  width: 260px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #6C65FF;
  display: flex;
  flex-direction: column;
  padding: 30px 15px;
  box-sizing: border-box;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  box-shadow: 0 0 35px rgba(108, 101, 255, 0.7);
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  margin-bottom: 12px;
  color: #E8E9FE;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.sidebar-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(-5px);
}

.sidebar-link.active {
  background-color: #E8E9FE;
  color: #6C65FF;
  font-weight: bold;
  transform: translateX(-5px);
}

.sidebar-icon {
  margin-left: 18px;
  display: flex;
  align-items: center;
}

.sidebar-icon svg {
  width: 22px;
  height: 22px;
  stroke: #E8E9FE;
  transition: stroke 0.3s ease;
}

.sidebar-link.active .sidebar-icon svg {
  stroke: #6C65FF;
}

.sidebar-text {
  font-family: 'Morabba', serif;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}