/* style.css */

    
/*    html, body {
        font-family:  'interFont';
        width: 100vw;
        height: auto;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }*/


    .message-plate {
        max-width: 100%; /* Match the max-width of the progress indicator */
        margin: 0; /* Vertically space out from other content and center horizontally */
        padding: 10px; /* Padding for aesthetic spacing inside the message plate */
        background-color: #0e4549; /* Light background for visibility */
        text-align: center; /* Center the text inside the message plate */
    }

    .alert-error {
        color: #ffffff;
        background-color: #dc3545; /* Bootstrap's danger color */
        border-color: #dc3545;
    }
    
/*    .container {
        flex: 1 0 auto;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }*/
/*
    .bg-img {
        background-color: #0e4549;
        position: relative;
        min-height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }*/

    .popup-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 1rem); /* Adjust this if you need more space at the top and bottom */
    }


    footer {
        padding: 0;
        background-color: #f8f9fa; /* Light gray background */
        text-align: center;
        margin-top: 0;
    }
