@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Regular.cdc140628f11.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  min-height: 100vh;
  font-family: "Vazirmatn";
}
.sidebar {
  width: 250px;
  background-color: #06182b;
  color: #fff;
  position: fixed;
  bottom: 0;
  height: 100%;
  bottom: 0;
  padding: 20px;
  transition: transform 0.3s ease;
  z-index: 1000;
}
.sidebar a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  padding: 7px;
  border-radius: 5px;
  transition: 0.1s;
  font-size: 15px;
}
.sidebar a:hover {
  background-color: #ffffff;
  color: #000;
}
#lang-ar,
#lang-en {
  cursor: pointer;
}
.content {
  margin-left: 250px;
  padding: 20px;
  flex-grow: 1;
  transition: margin-right 0.3s ease;
}
.toggle-btn {
  display: none;
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 0 20px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
#profilePreview {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
}
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 2;
    display: none;
  }
  .content {
    margin-left: 0;
    margin-bottom: 30px;
  }
  .toggle-btn {
    display: block;
  }
}
