/*header-footer for public pages*/
.logo-img {
  width: 110px; /* adjust as needed */
  height: auto;
  object-fit: contain;
  border-radius: 5px; /* optional for rounded edges */
  margin-right: 10px; /* spacing between logo and text */
}


footer p {
  font-size: 0.9rem;
  margin-bottom: 0;
}



/*hospitals.php*/

.page.hospitals {
  background-color: #f9f9f9;
}

.page.hospitals h1 {
  font-weight: 700;
  color: #333;
}

.page.hospitals .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.page.hospitals .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.page.hospitals .card-title {
  font-weight: 600;
}

.page.hospitals .card-text i {
  color: #007bff;
}


/*Admin-panel*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.admin-header {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h1 {
  margin: 0;
}

.logout-btn {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.admin-sidebar {
  width: 200px;
  background: #f4f4f4;
  position: fixed;
  top: 50px;
  bottom: 0;
  left: 0;
  padding-top: 20px;
}

.admin-sidebar ul {
  list-style: none;
  padding: 0;
}

.admin-sidebar ul li {
  margin: 10px 0;
}

.admin-sidebar ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 8px 16px;
  border-radius: 4px;
}

.admin-sidebar ul li a:hover {
  background: #007bff;
  color: #fff;
}

.main-content {
  margin-left: 220px;
  padding: 20px;
}

.admin-footer {
  text-align: center;
  padding: 10px;
  background: #f4f4f4;
  position: fixed;
  bottom: 0;
  left: 220px;
  right: 0;
}
