.landmarks-admin {
  min-height: calc(100vh - 92px);
  color: #24483b;
}
.landmarks-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding: 16px 18px;
  border: 1px solid #d8eee5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 112, 72, 0.05);
}
.landmarks-search {
  display: flex;
  align-items: center;
  gap: 9px;
}
.landmarks-search input,
.landmarks-search select,
.landmark-form-field > input,
.landmark-form-field > select,
.landmark-image-controls > input {
  box-sizing: border-box;
  height: 36px;
  padding: 0 11px;
  color: #24483b;
  outline: none;
  border: 1px solid #d3e8df;
  border-radius: 7px;
  background: #fff;
}
.landmarks-search input {
  width: 250px;
}
.landmarks-search input:focus,
.landmarks-search select:focus,
.landmark-form-field > input:focus,
.landmark-form-field > select:focus,
.landmark-image-controls > input:focus {
  border-color: #00aa6c;
  box-shadow: 0 0 0 2px rgba(0, 170, 108, 0.08);
}
.landmarks-toolbar button,
.landmark-row-actions button,
.landmark-admin-dialog footer button {
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}
.landmarks-search .query,
.landmarks-toolbar .add,
.landmark-admin-dialog footer .save {
  color: #fff;
  font-weight: 700;
  background: #00aa6c;
}
.landmarks-search .refresh {
  color: #008f5c;
  border: 1px solid #bfe4d5;
  background: #eaf9f3;
}
.landmarks-table-wrap {
  overflow: hidden;
  border: 1px solid #d8eee5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(0, 112, 72, 0.05);
}
.landmarks-summary {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 17px 18px;
  border-bottom: 1px solid #e2f1eb;
}
.landmarks-summary strong {
  font-size: 17px;
}
.landmarks-summary span {
  color: #7b9087;
  font-size: 12px;
}
.landmarks-table {
  width: 100%;
  border-collapse: collapse;
}
.landmarks-table th {
  padding: 12px 14px;
  color: #58736a;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  background: #f4fbf8;
  border-bottom: 1px solid #dcefe7;
}
.landmarks-table td {
  padding: 11px 14px;
  color: #36564a;
  font-size: 12px;
  vertical-align: middle;
  border-bottom: 1px solid #edf6f2;
}
.landmarks-table tbody tr:hover {
  background: #fbfffd;
}
.landmark-table-image {
  width: 130px;
  height: 78px;
  border: 1px solid #d8eae2;
  border-radius: 8px;
  background-color: #edf8f3;
  background-repeat: no-repeat;
}
.landmark-table-name {
  color: #17352b;
  font-size: 14px;
}
.landmark-status {
  display: inline-flex;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
}
.landmark-status.on {
  color: #008c5a;
  background: #dff7eb;
}
.landmark-status.off {
  color: #8a9791;
  background: #edf1ef;
}
.landmark-row-actions {
  display: flex;
  gap: 7px;
}
.landmark-row-actions button {
  height: 30px;
  padding: 0 12px;
  font-size: 11px;
}
.landmark-row-actions .edit {
  color: #007c50;
  border: 1px solid #bae0d1;
  background: #effaf6;
}
.landmark-row-actions .delete {
  color: #d84949;
  border: 1px solid #ffd0d0;
  background: #fff4f4;
}
.landmark-table-state {
  height: 160px !important;
  color: #81968d !important;
  text-align: center !important;
}
.landmark-admin-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.landmark-admin-mask {
  position: absolute;
  inset: 0;
  background: rgba(9, 32, 24, 0.52);
  backdrop-filter: blur(2px);
}
.landmark-admin-dialog {
  position: relative;
  display: flex;
  width: min(680px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  flex-direction: column;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 48, 30, 0.24);
}
.landmark-admin-dialog > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 21px;
  border-bottom: 1px solid #dcefe7;
  background: #f8fdfa;
}
.landmark-admin-dialog header h2 {
  margin: 0;
  color: #17352b;
  font-size: 18px;
}
.landmark-admin-dialog header p {
  margin: 4px 0 0;
  color: #82978e;
  font-size: 11px;
}
.landmark-admin-dialog header button {
  width: 34px;
  height: 34px;
  color: #607970;
  font-size: 25px;
  border: 0;
  border-radius: 50%;
  background: #eaf5f0;
  cursor: pointer;
}
.landmark-admin-form {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 16px;
  padding: 20px 22px;
  overflow-y: auto;
}
.landmark-form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  color: #506c62;
  font-size: 12px;
  font-weight: 700;
}
.landmark-form-field.wide {
  grid-column: 1/-1;
}
.landmark-image-editor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px dashed #bcded0;
  border-radius: 9px;
  background: #f8fdfa;
}
.landmark-image-preview {
  display: grid;
  flex: 0 0 190px;
  width: 190px;
  height: 120px;
  overflow: hidden;
  place-items: center;
  color: #8aa098;
  border-radius: 8px;
  background: #eaf6f1;
}
.landmark-preview-picture {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
.landmark-image-preview em {
  font-size: 12px;
  font-style: normal;
}
.landmark-image-controls {
  display: grid;
  min-width: 0;
  flex: 1;
  grid-template-columns: 1fr auto;
  gap: 9px;
}
.landmark-image-controls small {
  grid-column: 1/-1;
  color: #8aa098;
  font-size: 10px;
  font-weight: 400;
}
.landmark-upload-button {
  display: flex;
  position: relative;
  height: 36px;
  align-items: center;
  padding: 0 15px;
  color: #fff;
  font-size: 12px;
  border-radius: 7px;
  background: #00aa6c;
  cursor: pointer;
}
.landmark-upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.landmark-admin-dialog > footer {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding: 14px 21px;
  border-top: 1px solid #dcefe7;
  background: #fbfffd;
}
.landmark-admin-dialog footer .cancel {
  color: #577268;
  border: 1px solid #cce3da;
  background: #fff;
}
.landmark-admin-dialog footer button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
@media (max-width: 900px) {
  .landmarks-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .landmarks-search {
    flex-wrap: wrap;
  }
  .landmarks-table-wrap {
    overflow-x: auto;
  }
  .landmarks-table {
    min-width: 760px;
  }
}
