﻿/* Updated by Manju Parvathy on 05/27/2025 */

/* Fullscreen dimmed background */
.message-box {
    display: none; /* Show it with JS or server-side */
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

/* The centered modal */
     .mb-container {
        width: 40%;
        max-width: 600px;
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        
    }
    .message-box .mb-container .mb-middle .mb-title {
        width: 100%;
        float: left;
        padding: 10px 0px 0px;
        font-size: 31px;
        font-weight: 400;
        line-height: 36px;
      
    }

        .message-box .mb-container .mb-middle {
            width: 50%;
            left: 25%;
            position: relative;
            color: #FFF;
        }

            .message-box .mb-container .mb-middle .mb-content {
                width: 100%;
                float: left;
                padding: 0px 0px 0px;
            }
            .message-box .mb-content {
                width: 100%;
                float:right;
                align-content:center;
                align-items:center;
                padding: 0px 0px 0px;
            }
            .message-box .mb-container .mb-footer {
                width: 100%;
                float: left;
                padding: 10px 0px;
            }
.mb-footer {
    width: 100%;
    float: left;
    padding: 10px 0px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* END - Updated by Manju Parvathy on 05/27/2025 */
    .message-box .mb-Hintcontainer .mb-middle .mb-title {
        width: 100%;
        float: left;
        padding: 10px 0px 0px;
        font-size: 31px;
        font-weight: 400;
        line-height: 36px;
      
    }

    .message-box .mb-Hintcontainer {
        position: absolute;
        left: 0px;
        top: 15%;
        padding: 10px;
        width: 100%;
        
    }

        .message-box .mb-Hintcontainer .mb-middle {
            width: 50%;
            left: 25%;
            position: relative;
            color: #FFF;
        }

            .message-box .mb-Hintcontainer .mb-middle .mb-content {
                width: 100%;
                float: left;
                padding: 10px 0px 0px;
            }

            .message-box .mb-Hintcontainer .mb-middle .mb-footer {
                width: 100%;
                float: left;
                padding: 10px 0px;
            }

