/* Точечные доработки поверх AdminLTE/Bootstrap. Отдельного полного набора стилей не требуется. */

.app-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 10px);
  background: #343a40;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 2000;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  max-width: 90vw;
  text-align: center;
}
.app-toast.show { opacity: 1; transform: translate(-50%, 0); }
.app-toast-error { background: #dc3545; }

/* Мобильные окна оборудования — на весь экран (п. 6.3.1) */
@media (max-width: 767.98px) {
  .modal-fullscreen-mobile .modal-dialog {
    max-width: 100%;
    margin: 0;
    height: 100%;
  }
  .modal-fullscreen-mobile .modal-content {
    height: 100%;
    border-radius: 0;
  }
  .modal-fullscreen-mobile .modal-body {
    overflow-y: auto;
  }
}

/* Кнопка сохранения зафиксирована внизу экрана на телефоне */
.sticky-save-bar {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 8px 0;
  border-top: 1px solid #dee2e6;
  z-index: 5;
}

/* Плитки выбора отдела (одно касание) */
.dept-tile {
  display: inline-block;
  margin: 2px 4px 2px 0;
  padding: 8px 14px;
  border: 1px solid #adb5bd;
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
}
.dept-tile.active {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}

.masked-secret { letter-spacing: 2px; }

/* Встроенные SVG-иконки взамен иконочного шрифта */
.nav-icon, .icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 1.6rem; }
.nav-icon svg, .icon-btn svg { width: 18px; height: 18px; }

input, select, textarea, button { min-height: 38px; }
