body {
  font-family: "Inter", sans-serif;
}
.material-symbols-outlined {
  font-size: 18px;
}
.auth-input {
  width: 100%;
  height: 40px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 20px;
  background: #fdfdfc;
  border: 1px solid #e8e8e0;
  border-radius: 6px;
  box-shadow: 0px 1px 2px 0px rgba(10, 13, 20, 0.03);
  color: #0C0A08;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.auth-input::placeholder {
  color: #a6a3a0;
}
.auth-input:focus {
  border-color: #3AAFB8;
  box-shadow: 0 0 0 2px rgba(58, 175, 184, 0.2);
}
.auth-input.border-red-400 {
  border-color: #f87171;
}
.auth-input.border-green-400 {
  border-color: #4ade80;
}
select.auth-input {
  appearance: auto;
  padding-right: 32px;
}
textarea.auth-input {
  height: auto;
  min-height: 80px;
  resize: vertical;
}
.auth-input-password {
  padding-right: 40px;
}
#subdomainContainer:focus-within {
  border-color: #3AAFB8;
  box-shadow: 0 0 0 2px rgba(58, 175, 184, 0.2);
}
#subdomainContainer #id_subdomain:focus {
  border-color: transparent;
  box-shadow: none;
}
.sidebar-collapsed {
  width: 56px;
}
.sidebar-expanded {
  width: 200px;
}
.sidebar-collapsed .nav-text {
  display: none;
}
.sidebar-collapsed .nav-item {
  justify-content: center;
}
.sidebar-collapsed .logo-text {
  display: none;
}
.sidebar-collapsed .user-info {
  display: none;
}
/* When collapsed: hide settings toggle, show all settings sub-items */
.sidebar-collapsed .settings-toggle {
  display: none;
}
.sidebar-collapsed .settings-expanded-menu {
  display: block !important;
}
/* Tooltip container injected by JS */
.sidebar-tooltip {
  position: fixed;
  padding: 4px 10px;
  background: #1f2937;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 6px;
  pointer-events: none;
  z-index: 9999;
}
