:root {
  --ink: #0f2a30;
  --accent: #148c9c;
  --accent-dark: #0f6b77;
  --muted: #5f6b73;
  --soft: #f4fbfc;
}


.card-ghost {
  background: #ffffff;
  border: 1px solid #e6edef;
  border-radius: 18px;
  margin-bottom: 50px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}

.xl-title {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 1.75rem;
  margin: 0;
}


.lg-title {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 1.40rem;
  margin: 0;
}

.md-title {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 1rem;
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #f1fafb;
  color: #16424a;
  border: 1px solid #d6eaee;
  padding: .45rem .7rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  margin: .25rem .35rem .25rem 0;
  white-space: nowrap;
}

/* Bullets */
.dot-black {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.dot-black li {
  position: relative;
  padding-left: 1.05rem;
  margin: .5rem 0;
  color: #15292e;
}
.dot-black li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72rem;
  transform: translateY(-50%);
  width: .50rem;
  height: .50rem;
  border-radius: 50%;
  background: #000000;
}
/* Notices / tags */
.notice {
  background: #fff8e6;
  border: 1px solid #f4d28d;
  color: #553400;
  border-radius: 14px;
  padding: 14px;
  /* font-weight: 700; */
}
.note-red {
  background: #fff2f2;
  border-color: #f0b9b9;
  color: #7a0b0b;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: .48rem .7rem;
  border-radius: 12px;
  background: red;
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  white-space: nowrap;
  height: fit-content;
  margin-right: .5rem;
}
/* Tables */
.table-clean {
  --bs-table-bg: transparent;
}
.table-clean th,
.table-clean td {
  vertical-align: middle;
  border-color: #e6edef;
}
.table-section {
  border-radius: 14px;
  border: 1px solid #e6edef;
  overflow: hidden;
}




/* ayir */


.day-header {
    background-color: #FFD500;
    color: #000;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .event-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid #ffc107;
  }

  .event-card.red {
    border-left-color: #dc3545;
    color: #dc3545;
    font-weight: bold;
  }

  .event-card.blue {
    border-left-color: #0d6efd;
    color: #0d6efd;
    font-weight: bold;
  }

  .event-title {
    font-size: 1rem;
    font-weight: 500;
    white-space: pre-line;
  }

  .event-time {
    font-size: 0.95rem;
    font-weight: bold;
    white-space: nowrap;
  }

  

  /* ayir */


  .map-container {
  color: #333;
  width: 100%;
  margin: 0 auto 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.map-container h1 {
  margin: 16px;
  font-size: 22px;
  color: #222;
  text-align: center;
}
.map {
  width: 100%;
  height: 500px;
}
.download-buttons {
  display: flex;
}
.download-buttons a {
  flex: 1;
  padding: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.btn-kml { background: #FF5831; }
.btn-gpx { background: #696969; }

.leaflet-control-attribution {
  display: none !important;
}

.route-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.route-btn {
  flex: 1;
  min-width: 90px;
  padding: 12px;
  border: none;
  background: #696969;
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.route-btn:hover {
  background: #FF5831;
}
.d-flex {
	display: flex !important;
}


/* notice */

.notice-box {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.notice-box .notice-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.notice-info {
  background: #f2fbfe;
  border: 1px solid #cfe6f0;
  color: #0f2a30;
}

.notice-warning {
  background: #fff7e6;
  border: 1px solid #f6c36b;
  color: #4a2a00;
}

.notice-danger {
  background: #fff2f2;
  border: 1px solid #ffb3b3;
  color: #7a0b0b;
}

.notice-box strong {
  font-weight: 700;
}