/*itsrlabs/apps/platform/static/css/_shared/base_layout.css*/
/* ========= GLOBAL PAGE LAYOUT & BACKGROUND ======================= */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #f9f9f9;
    position: relative;
    z-index: 0;
}


/* ========= COMMON CONTAINER / FORM WRAPPERS ====================== */

.container {
    margin-top: 50px;
}

.form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ========= FLASH MESSAGES ======================================= */

.flash-messages-container {
    position: fixed;
    top: 20px;
    right: 20px;
    left: auto;
    transform: none;
    z-index: 1050;
    width: 50%;
    max-width: 600px;
}

/* ========= INSTANCE ERROR BANNER ================================= */

#instance-error-banner {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #D22B2B;
    color: white;
    text-align: center;
    padding: 15px;
    font-family: sans-serif;
    font-size: 16px;
    z-index: 9999;
    border-bottom: 2px solid #a01c1c;
}
