/* * {
  border: 1px solid red !important;
} */

:root {
  --brand: #4b6fa9; /* minimal light blue */
  --ink: #2a2f36;
  --muted: #6b7280;
  --bg: #ffffff;
}
html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--ink);
}

/* Top bar */
#topbar {
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 80%);
}
.logo-sigil {
  width: 50px !important;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
  font-weight: 800;
  color: var(--brand);
}
.logo-text {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-left: 12px;
  font-size: large;
}

/* Page shell inspired by the screenshots */
.page-shell {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      1200px 200px at 50% -40px,
      #eaf3ff 0%,
      rgba(234, 243, 255, 0) 60%
    ),
    linear-gradient(
      180deg,
      rgba(224, 235, 249, 0.35) 0%,
      rgba(255, 255, 255, 0) 60%
    );
}

.auth-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30vw;
  height: auto;
}

.header-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(28, 56, 99, 0.08);
  padding: 2.2rem;
  width: 100%;
}
.card-panel .ui.header {
  color: #2c3a4d;
}

.ui.button {
  border-radius: 14px;
}

.header-d {
    font-size: 18px;
}

/* Subtle bottom silhouettes hint */
.footer {
  background: linear-gradient(180deg, #ffffff 0, #f7fbff 100%);
  color: var(--muted) !important;
}
.footer p {
  color: var(--muted) !important;
}

/* Semantic UI overrides */
.ui.primary.button,
.ui.primary.buttons .button {
  background: var(--brand);
}
.ui.primary.button:hover {
  background: #3f6296;
}
.ui.input > input:focus {
  border-color: var(--brand) !important;
}
.ui.form .field > label {
  color: #364152;
}

.container-points {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffd93b;
  color: #1e2a44;

  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container-points-event {
    width: 70px;
    top: 10px;
    left: 130px;
    background: #ffd93b;
    color: #1e2a44;
    padding: 0.35rem 0.6rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.top-container-points {
  font-size: 35px;
  font-weight: 1000;
  text-align: center;
}

.bottom-container-points {
  font-size: 10px;
  line-height: 1;
  text-align: center;
  margin-top: 8px;
}

.location-link {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #1e2a44;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.location-link:hover {
  transform: scale(1.2);
}

.location-link .icon {
  margin: 0 !important;
}

.location-link-d {
    background: rgba(255, 255, 255, 0.9);
    color: #1e2a44;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

    .location-link-d:hover {
        transform: scale(1.2);
    }

    .location-link-d .icon {
        margin: 0 !important;
    }

.column-d {
    float: left;
    width: 33.33%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Set the size of the gmp-map element that contains the map */
#map {
    height: 600px; /* The height is 400 pixels */
    width: 100%; /* The width is the width of the web page */
}

