/* Hospital Section Style */
#hospital-section {
  background-color: #fff;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.form-container {
  margin-top: 15px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="file"] {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

/* Hospital List */
.hospital-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.hospital-list li {
  background: #eef2f7;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  position: relative;
}

.hospital-list li img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 10px;
}

/* Toast Message */
.toast {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #ffc107;
  color: black;
  padding: 10px 15px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 9999;
}

.toast.show {
  display: block;
}

/* Hidden Class */
.hidden {
  display: none;
}
