*:not(.fa-solid, .fas, .fa, .ni, .fab) {
  font-family: "Cairo", Arial, Helvetica, sans-serif !important;
}

@media (max-width: 500px) {
  .chat-box {
    left: 10px;
    right: 10px;
  }
}
.dropdown-toggle::after {
  display: none;
}

.navbar-nav {
  padding: 0 !important;
}

@media (min-width: 1200px) {
  .navbar-vertical.navbar-expand-xs.fixed-start {
    left: unset !important;
    right: 0 !important;
  }

  .sidenav.fixed-start + .main-content {
    margin-left: 0 !important;
    margin-right: 17.125rem !important;
  }
}

.fixed-plugin .fixed-plugin-button {
  right: unset !important;
  left: 30px !important;
}

.search-pro input {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border: 1px solid #d2d6da !important;
  border-left: 0 !important;
  padding-right: 12px !important;
}

.search-pro span {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: 1px solid #d2d6da !important;
  border-right: 0 !important;
}

.dropdown-menu-start[data-bs-popper] {
  left: -25px !important;
}

/* Configure */
.configure-account {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 10000;
}

/* Configure */

/* Tools Box */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px; /* moved to right */
  z-index: 2000;
}
.fab-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.fab-options {
  display: none;
  font-size: 30px;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.fab-option {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  margin-bottom: 10px;
}

/* Calculator */
#calculator {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 100px; /* moved to right */
  width: 280px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  overflow: hidden;
  z-index: 3000;
}

@media (max-width: 500px) {
  #calculator {
    right: 10px;
    left: 10px;
  }
}

#calculator .calc-header {
  background: #0d6efd;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#calculator .calc-body {
  padding: 10px;
  direction: rtl;
}
#calculator input {
  width: 100%;
  text-align: right;
  font-size: 20px;
  margin-bottom: 10px;
}
.calc-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.calc-btns button {
  font-size: 18px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  background: #f1f1f1;
  transition: 0.2s;
}
.calc-btns button:hover {
  background: #d0d0d0;
}
/* Tools Box */
