.clean-link {
    text-decoration: none;
}

.fs-10 {
    font-size: small;
}

.fs-11{
    font-size: xx-small;
}

.fs-9 {
    font-size: 10px;
}

.bg-test1 {
    background-color: blue;
}

.bg-test2 {
    background-color: green;
}

.bg-custom-secondary {
    background-color: #50514F;
}

.custom-border {
    border-bottom: 2px solid #f07374;
}

.bg-custom-primary {
    background-color: rgb(196, 237, 255);
}

.fill-viewport-height {
    min-height: 60vh;
}

.step {
    display: none;
}

.active {
    display: block;
}

.text-custom {
    color: #e42a27;
}

.progress {
    margin-bottom: 20px;
}

.pac-container {
    z-index: 1100 !important; /* Bootstrap modal has z-index of 1050 */
    position: absolute !important; /* Ensure absolute positioning */
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 0px #858585ad;
    }
    50% {
        box-shadow: 0 0 20px #858585ad;
    }
    100% {
        box-shadow: 0 0 0px #858585ad;
    }
}

.glowing-button {
    animation: glowing 3s infinite;
}

.highlight-button {
    box-shadow: 0 0 10px #bbbbbbad;
}

.button-emphasis {
    box-shadow: 0 0 20px #858585ad;
}

.alert-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1150;
    width: 90%; /* Or any width you prefer */
    max-width: 500px; /* Limit the maximum width */
}

.alert {
    padding: 0.5rem 1rem; /* Adjust padding to make the alert thinner */
}

.alert-btn-close-custom {
    padding: 0 !important; /* Remove padding */
    margin-top: auto !important;
    margin-bottom: auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    position: relative !important;
}

.custom-card {
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(73, 73, 73, 0.447);
}

.btn-circle {
    width: 40px;
    height: 40px;
    padding: 0px;
    margin: 0px;
    border-radius: 50%;
    text-align: center;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    flex-shrink: 0;
}

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.custom-shadow {
    box-shadow: 0 0 10px rgba(73, 73, 73, 0.447);
}