.is-current {
    color: var(--c-orange);
}

.partner {
    max-height: 285px;
}

/*-----------------------------------------------*/
/* Partnership resource files */ 
/*-----------------------------------------------*/
.file-container {
  width: 85%;
  margin: 10rem auto;
  display: flex;
  flex-direction: start; 
  align-items: center; 
}

.file-container h5 {
  margin-bottom: 10px;
}

.file-list {
  list-style: none;
  padding: 0;
}

.file-list a {
  padding: 20px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  margin: 20px;
  background-color: #0e515c; 
  display: inline-block;
}

.file-list a:hover {
  text-decoration: none;
  background-color: #00aeef; 
  color: #fff; 
}

/*-----------------------------------------------*/
/* Archive menu */ 
/*-----------------------------------------------*/
.section__actions {
  position: relative;
  display: flex;
  justify-content: center;
}
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background-color: #0e515c; /* Dark green */
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.dropdown-toggle:hover {
  background-color: #004d00; /* Darker green on hover */
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 2;
  min-width: 200px;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.btn--dark-green img {
  margin-left: 5px;
}

.alert-success {
    position: fixed;
    z-index:999;
    background-color: var(--c-green);
    width:100%;
    text-align:center;
    font-weight: 800;
    top:0;
}

/*-----------------------------------------------*/
/* section 404 */ 
/*-----------------------------------------------*/
.section-404 {
    padding: 24rem 10rem 11rem;
    min-width: 50rem;
}


/*-----------------------------------------------*/
/* Admin Edit Button */ 
/*-----------------------------------------------*/
.edit-entry-button {
    position: fixed;
    z-index: 1000;
    vertical-align: middle;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    border-radius: 1rem 0 0 0;
    background-color: var(--c-orange);
    padding: 0.6rem 1.2rem 0.4rem 1.4rem;
    font-size: 2rem;
    color: var(--c-white);
    text-transform: uppercase;
    font-family: var(--ff-cheapPineSans);
    transition: background-color var(--t-duration) ease-in-out, right 0.3s ease-in-out;
    right: 0; /* Initial position more to the right */
    top: 30rem;
}

.edit-entry-button:hover {
    right: 0; /* Bring it back to the original position on hover */
    background-color: #00aeef;
}
