.page-card{
    overflow: hidden;
}

.page-card-body{
    border: 7px solid #f0e9ff;
}

.page-header{
    height: 20vh;
}

.page-fluid-image{
    height: auto;
    width: 100%;
}

.page-image-container{
    max-width: 25vh;
}

.input-uppercase-center {
    text-transform: uppercase;
    text-align: center;
}

.w-min-content{
    width: min-content;
}

.filter-bright{
    filter: brightness(100);
}

.filter-dark{
    filter: brightness(0);
}

.scale-15{
    transform: scale(1.5);
}

.color-circle-list {
    list-style-type: none; /* Remove default blue-circle-listnumbering */
    counter-reset: list-counter; /* Reset the counter for the ordered list */
    padding-left: 0 !important;
}

    .color-circle-list li {
            counter-increment: list-counter; /* Increment the counter for each list item */
            position: relative;
            padding-left: 30px; /* Add space for the circle */
    }

            .color-circle-list li::before {
                    content: counter(list-counter); /* Display the current counter */
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 1.5rem; /* Width of the circle */
                    height: 1.5rem;
                    border-radius: 50%; /* Make the number circular */
                    background-color: var(--brand-color-7); /* Blue background */
                    color: white; /* White text color */
                    display: flex;
                    align-items: center;
                    justify-content: center; /* Center the number inside the circle */
                    font-weight: bold; /* Bold the number */
                    font-size: 1rem;
            }

            /* Assuming you have --brand-color-7 and --brand-color-8 defined in your CSS variables */

.btn-primary {
    background-color: var(--brand-color-7);
    border-color: var(--brand-color-7);
    color: white; /* Or any other text color you prefer, based on contrast */
  }
  
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active,
  .btn-primary.active,
  .show > .btn-primary.dropdown-toggle {
    background-color: var(--brand-color-6); /* Or a slightly darker/lighter version of brand-color-7 */
    border-color: var(--brand-color-6);
    color: white; /* Keep the same text color for consistency */
  }
  
  .btn-primary:focus,
  .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--brand-color-7-rgb, 0, 0, 0), 0.5); /* Use a rgba version of brand-color-7 for the focus outline */
  }
  
  .btn-primary:active,
  .btn-primary.active,
  .show > .btn-primary.dropdown-toggle {
    background-color: var(--brand-color-5); /* Or a darker version for active state */
    border-color: var(--brand-color-5);
  }
  
  .btn-primary:disabled,
  .btn-primary.disabled {
    background-color: #e0e0e0; /* Or a disabled color matching your theme */
    border-color: #e0e0e0;
    color: #9e9e9e; /* Or a disabled text color matching your theme */
  }