/* RPL Breadcrumb Styles - Matching League Table Design */
.rpl-breadcrumb-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 30px;
  background: linear-gradient(to bottom, #0d2c40, #05141e);
}

/* Rwanda pattern overlay */
.rwanda-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/templates/basic/images/imigongo-pattern.svg");
  opacity: 0.03;
  z-index: 0;
}

.imigongo-pattern-side {
  position: absolute;
  top: 0;
  width: 300px;
  height: 100%;
  background: url("/assets/templates/basic/images/imigongo-pattern.svg") repeat;
  opacity: 0.04;
  z-index: 0;
}

.imigongo-pattern-side.right {
  right: 0;
}

.imigongo-pattern-side.animated {
  animation: pattern-flow 120s linear infinite;
}

@keyframes pattern-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Section Header Styling - Matching League Table */
.rpl-section-header {
  width: fit-content;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.rpl-section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.rpl-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.rpl-section-divider {
  height: 3px;
  width: 100px;
  background: linear-gradient(to right, #2980b9, rgba(41, 128, 185, 0.3));
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* Breadcrumb Nav Container - Matching Table Style */
.breadcrumb-nav-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.imigongo-modern {
  position: relative;
  overflow: hidden;
}

.imigongo-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    #3498db,
    #2980b9,
    #1a5276,
    #2980b9,
    #3498db
  );
}

.magical-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Breadcrumb Navigation */
.rpl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rpl-breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-right: 30px;
  margin-right: 10px;
}

.rpl-breadcrumb-item::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.rpl-breadcrumb-item:last-child {
  padding-right: 0;
  margin-right: 0;
}

.rpl-breadcrumb-item:last-child::after {
  display: none;
}

.rpl-breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rpl-breadcrumb-item a:hover {
  color: #3498db;
  transform: translateX(2px);
}

.rpl-breadcrumb-item.active {
  color: #3498db;
  font-weight: 600;
}

.rpl-breadcrumb-item i {
  font-size: 14px;
}

/* Responsive styles */
@media (max-width: 767px) {
  .rpl-breadcrumb-section {
    padding: 40px 0 20px;
  }

  .rpl-section-title {
    font-size: 1.2rem;
  }

  .rpl-section-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .rpl-breadcrumb-item {
    font-size: 0.8rem;
    padding-right: 20px;
  }
}
