@charset "UTF-8";
/*			General				*/
html, p {
  font-size: 1rem;
}

.display-none {
  display: none !important;
}

input[type=text] {
  padding: 0.1rem 0.5rem;
}

/*			header				*/
.main_logo img {
  max-width: 100px;
  max-height: 50px;
  width: auto;
}

.btn-color {
  color: #00716c;
  background: #f7f7f7;
}

.nav-link {
  font-size: 1rem;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.nav-link:hover, li.breadcrumb-item a:hover {
  text-decoration: underline !important;
}

/*			Breadcrump navi			*/
.breadcrumb-title .breadcrumb-item a {
  color: #00716c !important;
}

/*			Content				*/
p {
  color: #231f20;
  font-size: 1rem;
}

a {
  color: #176cb0 !important;
}

a:hover {
  text-decoration: underline !important;
}

.time-dt, .hhttd14s {
  color: #231f20;
}

.action-btn {
  color: #231f20;
}

.main-btn.cancel {
  color: #231f20;
}

.item-subtitle, .label25, .btn-register, .app-top-right-link, .search-form-control {
  font-size: 1rem;
}

/* --- Signin and Signup Page --- */
.SidebarRegister__link {
  color: #176cb0;
}

.SidebarRegister__link:hover {
  text-decoration: underline !important;
}

/*			Footer				*/
.footer-logo img {
  max-width: 100px;
  max-height: 50px;
  width: auto;
}

.ul-ft-links li a {
  color: #65496d;
}

.night_mode_switch__btn {
  max-width: 300px;
  text-align: center;
}

.night_mode_switch__btn a:hover {
  text-decoration: none !important;
}

/*			Logbook, add item        */
.location-items-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.add-location-item, .location-item {
  width: 100%;
  min-height: 100px;
}

.add-location-item, .add-track-item {
  display: none;
}

.add-location-map, .location-map, .track-map {
  width: 100%;
  min-height: 300px;
  margin-bottom: 2rem;
}

.track-item-file-dropzone {
  display: none;
  width: 100%;
  min-height: 50px;
  border: 0;
  background: #142fdb;
  border-radius: 3px;
}

.leaflet-pane, .leaflet-top, .leaflet-bottom, .leaflet-control {
  z-index: unset;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.location-item-icon, .location-item-label {
  width: 2.5rem;
  height: 2.5rem;
  background-color: white;
  border: 2px solid black;
  border-radius: 1.25rem;
  color: black;
  font-size: 1.5rem;
  line-height: 2.5rem;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}

.location-item-list .location-items-block > div {
  width: 25%;
  text-align: center;
}

/* ── Mobile nav: override Bootstrap collapse display:none ────── */
@media (max-width: 992px) {
  .mobileMenu.open {
    display: block !important;
  }
}
/* ── Location pin (Leaflet divIcon) ──────────────────────────── */
.loc-pin-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30px;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.loc-pin-wrapper.loc-pin-hover, .loc-pin-wrapper.loc-pin-active {
  transform: scale(1.25);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.45));
}

.loc-pin-head {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #c0392b;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}

.loc-pin-tail {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #c0392b;
  margin-top: -2px;
}

/* ── Location chips ──────────────────────────────────────────── */
.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem 0.25rem 0.25rem;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 2rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: border-color 0.15s, background 0.15s, font-weight 0.1s;
  text-align: left;
}
.location-chip:hover, .location-chip.loc-chip-hover {
  border-color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.05);
}
.location-chip.loc-chip-active {
  border-color: #c0392b;
  font-weight: 600;
  background: rgba(192, 57, 43, 0.07);
}
.location-chip.loc-chip-active .location-chip-num {
  outline: 2px solid #c0392b;
  outline-offset: 2px;
}

.location-chip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #c0392b;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── Location detail panel ───────────────────────────────────── */
.location-detail-panel {
  padding: 0.5rem 0.85rem;
  border-left: 3px solid #c0392b;
  border-radius: 0 0.25rem 0.25rem 0;
  background: rgba(0, 0, 0, 0.04);
  font-size: 0.875rem;
}

/* ── Location edit chips (create / edit form) ────────────────── */
.location-edit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.location-edit-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.4rem 0.25rem 0.25rem;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 2rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
  user-select: none;
}
.location-edit-chip:hover, .location-edit-chip:focus {
  border-color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.05);
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}
.location-edit-chip.loc-chip-active {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.07);
}
.location-edit-chip.loc-chip-active .location-chip-num {
  outline: 2px solid #c0392b;
  outline-offset: 2px;
}

.loc-chip-remove-btn {
  background: none;
  border: none;
  padding: 0 0.15rem;
  margin-left: 0.1rem;
  color: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font-size: 0.7rem;
  line-height: 1;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
}
.loc-chip-remove-btn:hover, .loc-chip-remove-btn:focus {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.1);
  outline: none;
}

/* ── Location edit panel ─────────────────────────────────────── */
.location-edit-panel {
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  background: rgba(0, 0, 0, 0.03);
  font-size: 0.875rem;
}

/* ── GPX track start / end balloon pins ──────────────────────── */
.track-pin-start .loc-pin-head {
  background: #27ae60;
}
.track-pin-start .loc-pin-tail {
  border-top-color: #27ae60;
}

.track-pin-end .loc-pin-head {
  background: #c0392b;
}
.track-pin-end .loc-pin-tail {
  border-top-color: #c0392b;
}

.track-pin-combined .loc-pin-head {
  background: #e67e22;
}
.track-pin-combined .loc-pin-tail {
  border-top-color: #e67e22;
}

/* ── GPX track statistics display ────────────────────────────── */
.track-stats {
  font-size: 0.8rem;
  color: #555;
  margin: 0.1rem 0 0.25rem;
}

/* ── Track list page ─────────────────────────────────────────── */
.track-list-map {
  width: 140px;
  height: 110px;
  border-radius: 0.375rem;
  overflow: hidden;
  flex-shrink: 0;
}

.track-list-desc {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 0.4rem;
}

.track-list-edit-panel {
  background: rgba(0, 0, 0, 0.03);
}

/* ── Sidebar mobile slot (inside hamburger collapse) ─────────── */
.sidebar-mobile-slot:not(:empty) {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.aside-in-mobile-slot {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.track-sort-select {
  width: auto;
  display: inline-block;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  font-size: 0.9rem;
}

.track-filter-panel {
  background: rgba(0, 0, 0, 0.03);
}

.track-range-slider {
  margin: 0.25rem 0.5rem 0.5rem;
}
.track-range-slider.ui-slider-horizontal {
  height: 6px;
  border-radius: 3px;
}
.track-range-slider .ui-slider-handle {
  width: 18px;
  height: 18px;
  top: -7px;
  margin-left: -9px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
}

.tl-delete-confirm {
  font-size: 0.875rem;
  vertical-align: middle;
}

/*# sourceMappingURL=style_mdl.css.map */
