
@media only screen {.preview-mode-theme-mismatch-warning {display: none !important;}
}

.check {
  color: green;
  font-size: 1.5rem; 
}

.link-text {
    display: inline-flex;    align-items: center;
    text-decoration: none;     color: inherit;
    }

.chevron {
    color: green;
    font-size: 1.5rem;
    margin-left: 0px;
    transition: color 0.3s;
}

.chevron:hover {
    color: white;
    }

.allcaps {
    text-transform: uppercase;
    letter-spacing: 2px; 
}

.allcaps2 {
    text-transform: uppercase;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Adjust if necessary */
  height: auto;
  overflow: visible; /* Shows content even if it overflows the container's bounds */
}


.list-inline a {
    margin-right: 15px;
    display: inline-block;
    cursor: pointer; /* Changes the cursor to a pointer */
}

.button-container {
  display: flex;
  justify-content: flex-end; /* Aligns the container's content to the right */
  gap: 10px; /* Adds space between the buttons */
}

.svg-button {
  background-color: #6c757d;
  border: none;
  border-radius: 8px;
  padding: 0; /* Remove padding to allow flexbox to center the content */
  cursor: pointer;
  transition: background-color 0.3s;
  width: 40px;
  height: 40px;
  display: inline-flex; /* Use inline-flex to center content */
  align-items: center; /* Center align vertically */
  justify-content: center; /* Center align horizontally */
  overflow: hidden; /* Prevents content from spilling out */
}

.svg-button:hover {
  background-color: #5c636a;
}

.svg-button a {
  display: flex; /* Use flex to center the SVG */
  align-items: center; /* Center align vertically */
  justify-content: center; /* Center align horizontally */
  width: 100%; /* Full width of the button */
  height: 100%; /* Full height of the button */
  text-decoration: none;
}

.svg-button svg {
  fill: #fff;
  width: 16px; /* Adjust SVG size if needed */
  height: 16px; /* Adjust SVG size if needed */
}

.link-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
	
.img-opacity {
  opacity: 0.75
  ; /* Start with 50% opacity */
  transition: opacity 0.3s ease; /* Transition effect for opacity change */
}

.img-opacity:hover {
  opacity: 1; /* Full opacity on hover */
}

.img-effect {
  opacity: 0.50; /* Start with 25% opacity */
  filter: grayscale(100%) saturate(0) brightness(50%); /* Start in black and white */
  transition: opacity 0.3s ease, filter 0.3s ease; /* Transition effect for both opacity and filter changes */
}

.img-effect:hover {
  opacity: 1; /* Full opacity on hover */
  filter: grayscale(0%) saturate(100%) brightness(100%); /* Full color on hover */
}

.wordspace-top-nav li {
    display: inline-block !important;
    margin-right: 15px !important;
    white-space: nowrap !important;
}

.wordspace-top-nav li:last-child {
    margin-right: 0 !important;
}