/* Appointment Details Container */
.appointment-details-container {
  width: 80%;
  max-width: 1200px;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-top: 100px;
  text-align: center;
}

/* Title */
.appointment-title {
  font-size: 1rem;
  color: #007bff;
  margin-bottom: 20px;
}

.appointment-title h2 {
  margin: 0; /* Optional: Remove default margin around the h2 */
  font-size: 1.5rem; /* Optional: You can adjust the font size */
  color: #007bff; /* Optional: You can change the font color */
}

/* Cards */
.appointment-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 20px 0 40px 0;
}

/* Card Style */
.card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Card Titles */
.card h2 {
  font-size: 1.2rem;
  color: #e91e63;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Card Content */
.card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Double Card - One Card Taking the Space of Two */
.card.double-card {
  grid-column: span 2; /* Make the card span two columns */
  height: auto; /* Make sure the height is flexible */
}

/* Button Container */
.button-container {
  margin-top: 40px;
  text-align: center;
}

.btn-standard {
  background-color: #008cba;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-standard:hover {
  background-color: #005f7a;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .appointment-details-container {
    width: 95%;
    padding: 20px;
  }

  .appointment-info-cards {
    grid-template-columns: 1fr;
  }

  .appointment-title h1 {
    font-size: 2rem;
  }
}

/* Photo Styles */
.card img {
  margin: 20px;
  width: 100%;
  height: 300px;
  border-radius: 8px;
  margin-top: 10px;
  object-fit: cover;
  display: block;
}
