/**
 * Copyright 2026 Lincoln Institute of Land Policy
 * SPDX-License-Identifier: MIT
 */

.flat {
    border: 0px;
}

header {
    display: inline-block;
}

main {
    background-color:white
}

.crumbs {
    background-color:rgb(230, 230, 230);
    padding: 6px;
}

.crumbs a {
    padding: 0px 6px;
    color:black;
    text-decoration: none;
    position: relative;
}

.crumbs a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: -8px;
    left: 2px;
    background-color: #ffc627;
    transition: width 0.3s ease;
}

.crumbs a:hover::after {
    width: calc(100% - 5px);
}

.badge {
    background-color: #ffc627 !important;
    color: black;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
}

#record-collections {
    display: none !important;
}

a {
    color: rgb(140, 29, 64);
}

header .nav-link,.nav-link:hover {
    color: rgb(140, 29, 64);
}

main a:hover {
    text-decoration: none;
    color: rgb(140, 29, 64);
}

.parameter-group {
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 6px;
}

#items-map, #collection-map {
    width: 100%;
    height: 400px;
}

#coverages-map {
    width: 100%;
    height: 80vh;
}

.c3-tooltip-container {
    z-index: 300;
}

/* cancel mini-css header>button uppercase */
header button, header [type="button"], header .button, header [role="button"] {
    text-transform: none;
}

html, body {
    background-color: #fff;
}

footer.sticky {
    position: fixed;
    width: 100%;
}

main {
    padding-bottom: 65px; /* prevent from falling under the footer */
}

table:not(.horizontal) {
    max-height: none;
}

mark.successful {
  background-color: green;
}

mark.accepted {
  background-color: default;
}

mark.failed {
  background-color: red;
}

mark.running {
  background-color: orange;
}
