/*


.logo {
  height: 70px;
}

header {
  background-color: #3a5068;
  color: white;
  padding: 8px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: 'Calibri', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

select {
  padding: 6px;
  font-size: 14px;
}

.button:hover {
  background-color: #45a049;
}

.contact-details {
  font-size: 10px;
}

@media (max-width: 768px) {
  .contact-details {
    display: none;
  }
}


.mobile-nav-admin {
  display: none;
  flex-direction: column;
  background-color: red;
  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;
}

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

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

.mobile-nav a:hover {
  background-color: #3a5080;
}

.mobile-nav-admin a:hover {
  background-color: #3a5080;
}

@media (max-width: 768px) {
  .site-header,
  .admin-header {
    flex-direction: column;
    align-items: center;
  }

  .card img {
    width: 50%;
    height: auto;
    border-radius: 8px;
  }



  .header-left {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    width: 50px;
    height: auto;
  }

  .dropdown {
    display: none;
  }



  .mobile-nav-admin {
    width: 90%;
    right: 5%;
  }

}
  
@media (max-width: 768px) {
  .table-cell {
    flex: 1 1 100%;
  }
} 
