body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
    background-color: "red";
}

.textcenter{
    text-align: center;
}

.hidden{
    display: none;
}

.picklang{
    max-width: fit-content;
    margin-top: 20px;
    align-self: center;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
}

.btnlang{
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
}



.btnlang.cy{
    margin-right: 75px;
}

/* Image Slider Styles */
.slider-container {
    position: relative;
    max-width: 600px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider {
    position: relative;
    width: 100%;
    height: 400px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    border: none;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.breadcrumb-container {
  font-family: system-ui, sans-serif;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0.75rem 1rem;
  margin: 0;
  background-color: #e9ecef; /* Bootstrap's breadcrumb background */
  border-radius: 0.375rem;   /* Matches Bootstrap .rounded */
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: #6c757d; /* Bootstrap's muted text color */
}

.breadcrumb-item a {
  text-decoration: none;
  color: #0d6efd; /* Bootstrap 5 primary blue */
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d; /* Muted gray like Bootstrap active crumb */
  pointer-events: none;
  cursor: default;
}