.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgb(172, 18, 18);
  font-family: 'Calibri', sans-serif;
}

.admin-dropbtn {
  background-color: rgb(172, 18, 18);
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.admin-dropdown {
  position: relative;
  display: inline-block;
}

.admin-dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(172, 18, 18);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.admin-dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.admin-dropdown-content a:hover {
  background-color: #ff6d6d;
}

.admin-dropdown:hover .admin-dropdown-content {
  display: block;
}

.admin-dropdown:hover .admin-dropbtn {
  background-color: rgb(172, 18, 18);
}

@media (max-width: 768px) { 

  .desktop-nav {
    display: none;
  }
  
  .header-text small {/* Removes the contact info if on mobile */
    display: none;
  }

  .admin-hamburger-nav { /* Style of the burgers dropdown items */
    display: none;
    flex-direction: column;
    background-color: rgb(172, 18, 18);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .admin-hamburger-nav a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    border-top: 1px solid #4c5a6a;
  }

  .hamburger {
    display: block;
    margin: 0 auto;
  }  
/* 
  .mobile-nav {
    width: 90%;
    right: 5%;
  } */
} 