/* Increase Container Size */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px;
    }
}

/* Form Element Styling */

.btn-primary{
    --bs-btn-hover-color: black;
}

/* Template Elements */

.logo{
    background-color: var(--secondary-colour);
    padding: 20px;
    border-radius: 0.375rem;
}

.disabled-link{
    pointer-events: none;
}

.input-icon {
  position: relative;
}

.input-icon > i {
  position: absolute;
  display: block;
  transform: translate(0, -50%);
  top: 50%;
  pointer-events: none;
  width: 25px;
  text-align: center;
  font-style: normal;
}

.input-icon > input {
  padding-left: 25px;
  padding-right: 0;
}

.input-icon-right > i {
  right: 0;
}

.input-icon-right > input {
  padding-left: 0;
  padding-right: 25px;
  text-align: right;
}



.year-header {
    cursor: pointer;
    font-weight: bold;
    position: relative;
}
.year-header::before {
    content: "►"; /* collapsed arrow */
    position: absolute;
    left: 0;
}
.year-header.active::before {
    content: "▼"; /* expanded arrow */
}
.year-header.active {
    background-color: #e9ecef; /* light Bootstrap grey highlight */
}
