
@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap');

*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: "Kantumruy Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  body{
      /* background-image: url(Image/img-background.webp); */
      background-color: #fff;
  }
.top-nav {
  top: 0;
  background-color: #eff8ff;
  position: sticky;
  z-index: 9999;
}

/* Text run */
.run-text {
  height: 40px;
}
.run-text ul {
  padding: 7px 0;
  display: flex;
  gap: 7px;
}
.run-text ul li {
  list-style: none;
}
.run-text ul li img {
  width: 25px;
  height: 25px;
}
.run-text ul li span {
  font-weight: 500;
  color: #0e384c;
}

/* Sidebar / Card UI */
.sidebar {
  height: 100vh;
}
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card h5 {
  margin-bottom: 1rem;
}

/* Info Bar */
.dental-info-bar {
  background-color: #004274;
  color: #fff;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-item img {
  font-size: 24px;
  filter: brightness(100%) invert(1);
}
.info-content h5 {
  text-align: start;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.info-content p {
  margin: 0;
  text-align: start;
  font-size: 15px;
  color: #c9d6df;
}

/* Button */
.appointment-btn {
  background-color: #2699fb;
  border-radius: 25px;
  padding: 10px 25px;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.3s;
}
.appointment-btn i {
  margin-left: 8px;
}
.appointment-btn:hover {
  background-color: #1b7cc3;
}
