html, body {
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}
h1 { color:#52a41c; }
h2 { color:#52a41c; }
h3 { color:#52a41c; }
h4 { color:#52a41c; }
h5 { color:#52a41c; }
h6 { color:#52a41c; }

.dark-green {color: #5e8201;}
.light-grey {color: #E5E9E1;}

body { background-color: #090808; color:#fff; }
hr { border: 1px solid #424442; }
#splash {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#splash img { max-width: 300px; margin-bottom: 60px; }
#splash .search-group { max-width: 500px; width: 100%; }
#splash .advanced-link { margin-top: 20px; text-decoration:underline; cursor: pointer; color: #52a41c; }
#mainInterface {
    padding: 0;
    margin: 0;
}
.sticky-nav { position: sticky; top: 0; z-index: 1030; }
.facet-container { max-height: 90vh; overflow-y: auto; }
.card {
    background-color: rgba(0,0,0,0.2);
    border: 1px solid #424442;
    margin-bottom: 20px;
}
.card-header { width: 100%; height: 240px; overflow: hidden; padding: 0; }
.card-header img { width: 100%; height: 100%; object-fit: cover; }
.card-title { color:#52a41c; }
.card-footer { background-color: #1c1d1c; padding: 5px; text-align: center; }
.facet-item { margin-bottom: 5px; font-size:14px; }
.active-filters { margin-bottom: 10px; }
#activeFilters .active-filter {
    display: inline-block;
    background: #424442 !important;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 4px;
    color:#52a41c;
}
.social-links span { margin-right: 12px; font-size: 1.2em; }
a:hover {
  color: #b9fc06;
  text-decoration: underline;
}
a.neu { color: lightgrey; }


.dark-link { color: #E5E9E1; text-decoration: underline; background-color: transparent; font-weight: bold; }
.green-link { color: #52a41c; text-decoration: underline; background-color: transparent; font-weight: normal; }
.btn-search { color: #fff; background-color: #52a41c; border-color: #52a41c; }
.btn-connect { color: #fff; background-color: #52a41c; border-color: #52a41c; }
.btn-start { color: #fff; background-color: #52a41c; border-color: #52a41c; }
.btn-secondary { color: #fff; background-color: #424442; border-color: #424442; }
.blurred { filter: blur(8px); transition: filter 0.3s; }
.blurred:hover { filter: none; }
.green-text { color: #52a41c; margin-bottom: 1em; background-color: transparent; }
.red-text { color: #FF5733; margin-bottom: 1em; background-color: transparent; }
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1c1d1c;
    text-align: center;
    padding: 10px 0;
    font-size: 0.75em;
    z-index: 1030;
    color: #52a41c;
}



#mainInterface > .container-fluid { padding: 0; }
.bg-dark {
    background-color: #1c1d1c !important;
}
#searchInput { background-color: #494a49 !important; border: none; color:#fff; }
select.form-control:not([size]):not([multiple]) {
    height: calc(2rem + 2px);
    font-size: 14px;
    background: #424442;
    color: #fff;
    border: none;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #5b5e5b;
    outline: 0;
    box-shadow: 0 0 0 .05rem gray;
}

.facet-container {
  overflow-y: auto;
}
.facet-container::-webkit-scrollbar {
  width: 8px;
}
.facet-container::-webkit-scrollbar-track {
  background: transparent;
}
.facet-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5); /* Change color as needed */
  border-radius: 4px;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.5s ease-in-out;
}
.facet-container:hover::-webkit-scrollbar-thumb {
  opacity: 1;
}
.btn.focus, .btn:focus {
box-shadow: none !important;}
