/* ====== ОБЩЕЕ ====== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* ====== ШАПКА ====== */
.topbar {
  height: 50px;
  background: #1f1f1f;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 15px;
}

.topbar .title {
  font-weight: bold;
  flex-grow: 1;
}

.topbar .user a {
  color: #9fd3ff;
  text-decoration: none;
}

/* ====== КАРТА ====== */
#map {
  height: calc(100vh - 50px);
  width: 100%;
}

/* ====== КНОПКИ ====== */
.btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.btn.primary {
  background: #2bd46f;
  color: #000;
}

.btn.danger {
  background: #ff2b2b;
  color: #fff;
}

/* ===================================================== */
/* ====== LEAFLET: УБИРАЕМ СТАНДАРТНУЮ ОБОЛОЧКУ ====== */
/* ===================================================== */

.leaflet-popup-content-wrapper {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.leaflet-popup-content {
  margin: 0;
}

.leaflet-popup-tip {
  display: none;
}

/* ===================================================== */
/* ====== НАШ ПОПАП (КАРТОЧКА) ====== */
/* ===================================================== */

.popup-inner {
  background: #1e1e1e;
  color: #eaeaea;
  padding: 8px 10px;
  border-radius: 10px;
  min-width: 240px;
  font-size: 13px;
  line-height: 1.35;
}

/* Заголовок */
.popup-title {
  font-weight: bold;
  margin-bottom: 4px;
  color: #ffffff;
}

/* Строки */
.popup-row {
  margin-top: 4px;
}

/* ====== СОСТОЯНИЯ ====== */

/* 🔴 Тревога */
.popup-alarm {
  border: 2px solid #ff2b2b;
  box-shadow: 0 0 10px rgba(255,43,43,0.6);
}

/* ⚫ Нет связи */
.popup-offline {
  background: #2a2a2a;
  border: 2px dashed #666;
  color: #bbb;
}

/* ====== КНОПКИ В ПОПАПЕ ====== */
.popup-actions {
  margin-top: 8px;
  text-align: center;
}

.popup-offline {
  background: #2b2b2b;
  border: 2px dashed #888;
  color: #bcbcbc;
}

.popup-offline .popup-title {
  color: #cfcfcf;
}

/* Бейдж OFFLINE в заголовке */
.offline-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 11px;
  border-radius: 4px;
  background: #555;
  color: #eee;
}
/* ONLINE — зелёная пунктирная рамка */
.popup-online {
  border: 2px dashed #2bd46f;
}

/* OFFLINE — серая пунктирная рамка */
.popup-offline {
  border: 2px dashed #888;
  background: #2b2b2b;
  color: #bbb;
}

/* Заблокированная кнопка */
.popup-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* ===================================================== */
/* ====== СТРАНИЦА ЛОГИНА ====== */
/* ===================================================== */

body.bg {
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Карточка */
.login-card {
  background: #1e1e1e;
  color: #eaeaea;
  width: 320px;
  padding: 22px 24px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

/* Заголовок */
.login-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
  text-align: center;
}

/* Подзаголовок */
.login-sub {
  font-size: 13px;
  color: #aaa;
  text-align: center;
  margin-bottom: 16px;
}

/* Форма */
.form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form label {
  font-size: 12px;
  color: #ccc;
}

.form input {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #121212;
  color: #eee;
  outline: none;
}

.form input:focus {
  border-color: #2bd46f;
}

/* Ошибка */
.alert {
  background: #3a1e1e;
  border: 1px solid #ff2b2b;
  color: #ffdada;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 10px;
  text-align: center;
}

/* Кнопка */
.form .btn {
  margin-top: 12px;
}
