        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .popup-content {
            max-width: 400px;
        }

:root {
    --bs-primary: #ff6600; /* Replace with your desired primary color */
    --bs-primary-rgb: 255, 102, 0;
}

.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-primary:hover {
    background-color: #e65c00 !important;
    border-color: #e65c00 !important;
}



/* Make the page take full height */
/*html, body {
   height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Wrapper takes full height */
/*.wrapper {
    display: flex;
    flex-direction: column;
    min-height:100vh;
}*/

/* Content expands to push footer down */
.content {
    flex: 1;
}

/* Footer styles

.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 8px 15px;
    min-height: 30px;
    font-size: 14px;
    width: 100%;
}
*/
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}

.content {
    flex-grow: 1; /* Pushes footer to the bottom when content is short */
}

.footer {
    background-color: #006838;/*#f1f1f1;*/
    text-align: center;
    padding: 10px;

}

