html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

main {
    padding-bottom: 22rem; /* Adjust as needed */
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: #f5f5f5;
}

/* Frontpage */
.hero {
    margin-top: 6px;
}

.brand-badge {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 0.4rem;
    background: rgba(25, 135, 84, 0.12); /* Bootstrap success-ish */
    border: 1px solid rgba(25, 135, 84, 0.25);
}

.site-points {
    padding-left: 1.1rem;
    margin: 0;
}

    .site-points li {
        margin: 0.35rem 0;
        color: rgba(0,0,0,0.7);
    }

/* Right hero panel */
.hero-panel {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 14px;
}

.hero-panel-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.info-tile {
    background: white;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 10px;
}

.info-tile-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.info-tile-text {
    color: rgba(0,0,0,0.65);
    font-size: 0.9rem;
}

/* Next flight card */
.next-flight-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.10);
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    overflow: hidden;
}

.next-flight-label {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.12);
    border: 1px solid rgba(13, 110, 253, 0.20);
    margin-bottom: 6px;
}

.next-flight-title {
    font-size: 1.25rem;
}

.next-flight-link {
    color: inherit;
    text-decoration: none;
}

    .next-flight-link:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
    }

/* Thumb (reuse your previous style idea) */
.thumb {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
}

    .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Meta pills */
.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: 8px;
}

    .meta .pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(0,0,0,0.04);
        border: 1px solid rgba(0,0,0,0.08);
        color: rgba(0,0,0,0.72);
        font-size: 0.85rem;
        white-space: nowrap;
    }

/* Empty state (optional) */
.empty-state {
    border: 1px dashed rgba(0,0,0,0.20);
    border-radius: 16px;
    padding: 16px;
    background: rgba(0,0,0,0.02);
}

.empty-state-title {
    font-weight: 600;
    margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .next-flight-card {
        grid-template-columns: 1fr;
    }

    .thumb {
        min-height: 200px;
    }
}