body{
    background: url('../clinic.jpg') no-repeat center center/cover;
}
body {
    font-family: Arial;
    margin: 0;
    padding: 0;
    background: #f2f2f2;
}

/* Header styles used on all pages */
header {
     background-color: #007BFF;
     color: white;
     padding: 30px 40px;
     text-align: center;
}

/* Navigation bar */
nav ul {
    list-style: none;
    padding: 10;
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #084261;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
}
main {
    padding: 20px;
}
form {
    background: white;
    padding: 20px;
    border-radius: 5px;
}

input, textarea, select, button {
    margin: 10px 0;
    padding: 8px;
    width: 100%;
    max-width: 400px;
}
.box{
padding: 12px;
    margin: 20px;
    width: 65%;
    border: none;
    outline: none;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset -3px -3px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1rem;
}
.doctor-list {
    display: flex;
    /* gap: 20px; */
    flex-wrap: wrap;
}

.doctor {
    background-color: #e0f0ff;
    padding: 10px;
    border-radius: 5px;
    flex: 1 1 30%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #e6f0ff;
    border-radius: 8px;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
/* img.right {
  float: right;
  margin-left: 10px;
  position: 20%;
} */

.doctor-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.doctor-card {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  /* grid-template-columns: 1fr; */
  border-radius: 8px;
  width: 200px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.doctor-card img {
  width: 100%;
  border-radius: 5px;
}

#profile-container img {
  max-width: 250px;
  border-radius: 8px;
}