html, body {
  margin: 0;
  padding: 0;
}

.lao a {
    text-decoration: none;
    /* color: rgb(117, 17, 17) !important; */
    color: #911617 !important;
}

.lao a:hover {
    color: #911617 !important; /* Color on hover */
}

a {
  text-decoration: none; /* Optional: removes the underline */
}

a:hover {
  color: green !important;; /* Color on hover */
}

/* Optional: Ensure the images in the carousel fit properly */
.carousel-item img {
    max-height: 380px;  /* Set a max height for the images */
    object-fit: cover;  /* Crop image to cover the container while maintaining aspect ratio */
}

.carousel-indicators button {
    width: 8px; /* Width of the dot */
    height: 8px; /* Height of the dot */
    border-radius: 50%; /* Make them round */
    background-color: #bbb; /* Default inactive color */
    border: none; /* Remove default border */
    opacity: 0.6; /* Slight opacity for inactive dots */
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.carousel-indicators .active {
    background-color: #333; /* Active dot color */
    opacity: 1; /* Full opacity for active dot */
}