html {
  font-size: 14px;
  background-color: black;
  color: red;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: black;
  color: red;
}

a.nav-link {
  color: red !important;
}

.text-red {
  color: red !important;
}

.no-underline {
  text-decoration: none;
}

.center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.title {
  font-size: 5.5rem;
}

.button {
  color: red;
  background-color: black;
  border-color: red;
  border-width: 2px;
  height: 3rem;
  font-size: 1.5rem;
  padding-bottom: 4px;
}

/* Style the scrollbar track */
::-webkit-scrollbar {
  width: 5px;
  /* Set the width of the scrollbar */
}

/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: red;
  /* Background color of the thumb */
  border-radius: 5px;
  /* Round the edges of the thumb */
}

/* Style the scrollbar track */
::-webkit-scrollbar-track {
  background: #eee;
  /* Background color of the track */
}

/* Change the color of the scrollbar thumb (draggable part) */
.scroller {
  scrollbar-color: red #eee;
}

.help-nav {
  position: sticky;
  top: 0;
}

.navbar-nav>li>.dropdown-menu {
  background-color: #000000;
}

.buildings-menu-element {
  padding-left: 1rem !important;
}

/* Default styles for all screen sizes */
.location-links {
  display: flex;
  flex-direction: column;
}

.location-links a {
  margin-bottom: 10px;
  /* Adjust the default spacing as needed */
}

/* Media query for smaller screens (adjust the max-width as needed) */
@media (max-width: 768px) {
  .location-links a {
    margin-bottom: 20px;
    /* Adjust the spacing for smaller screens */
  }
}

.hidden-row {
  display: none;
}

tr td .slim-btn {
  /* Adjust the font size to make it smaller */
  font-size: 0.7rem;
  /* Adjust padding to reduce the button size */
  padding: 0.2rem 0.4rem;
  margin-left: 15px;
  /* Add right margin to create space */
  /* Set the text color to red */
  color: red !important;
}