/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-od2h73cd6n] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-od2h73cd6n] {
    flex: 1;
}

.sidebar[b-od2h73cd6n] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-od2h73cd6n] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-od2h73cd6n]  a, .top-row[b-od2h73cd6n]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-od2h73cd6n]  a:hover, .top-row[b-od2h73cd6n]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-od2h73cd6n]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-od2h73cd6n] {
        justify-content: space-between;
    }

    .top-row[b-od2h73cd6n]  a, .top-row[b-od2h73cd6n]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-od2h73cd6n] {
        flex-direction: row;
    }

    .sidebar[b-od2h73cd6n] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-od2h73cd6n] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-od2h73cd6n]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-od2h73cd6n], article[b-od2h73cd6n] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-od2h73cd6n] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-od2h73cd6n] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-si250hatdd],
.components-reconnect-repeated-attempt-visible[b-si250hatdd],
.components-reconnect-failed-visible[b-si250hatdd],
.components-pause-visible[b-si250hatdd],
.components-resume-failed-visible[b-si250hatdd],
.components-rejoining-animation[b-si250hatdd] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-si250hatdd],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-si250hatdd],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-si250hatdd],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-si250hatdd],
#components-reconnect-modal.components-reconnect-retrying[b-si250hatdd],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-si250hatdd],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-si250hatdd],
#components-reconnect-modal.components-reconnect-failed[b-si250hatdd],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-si250hatdd] {
    display: block;
}


#components-reconnect-modal[b-si250hatdd] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-si250hatdd 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-si250hatdd 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-si250hatdd 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-si250hatdd]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-si250hatdd 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-si250hatdd {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-si250hatdd {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-si250hatdd {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-si250hatdd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-si250hatdd] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-si250hatdd] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-si250hatdd] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-si250hatdd] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-si250hatdd] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-si250hatdd] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-si250hatdd 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-si250hatdd] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-si250hatdd {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
body[b-2sm9oeewfi] {
    
}

.checkinspagecontainer[b-2sm9oeewfi] {
    display: flex;
    flex-direction: row;
    width: 100%; 
    height: 98vh;
    box-sizing: border-box;
}


.logoandlistcontainer[b-2sm9oeewfi] {
    flex: 1; 
    background-color: #303030;
    margin-left: 10px;
    overflow-y: auto;
    height:98vh;
}


.companylogo[b-2sm9oeewfi]{
    width:100%;
    object-fit:contain;
    background-color:white;
    border-radius:6px;
}

.checkinstable[b-2sm9oeewfi]{
    width:100%;
    
}

.tableheaderrow[b-2sm9oeewfi] {
    background-color: #303030;
    color:white;
    font-size:1rem;
    
}

.tableheadercell[b-2sm9oeewfi] {
    padding: 8px;
}

.tabledatarow[b-2sm9oeewfi] {
    background-color: #d9bbba;
    color:black;
}

.tabledatarow:hover[b-2sm9oeewfi]{
    cursor:pointer;
    border-style:solid;
    border-width:1px;
    border-color:black;
}

.ontime[b-2sm9oeewfi] {
    background-color: #9cb8a9;
    color:black;
}

.tabledatacell[b-2sm9oeewfi]{
    padding:8px;
}

#map[b-2sm9oeewfi] {
    flex: 0 0 80%; /* instead of width: 80vw */
    height: 100%;
}


/* Floating chat button */
.chat-fab[b-2sm9oeewfi] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0078d4;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
}

/* Chat widget container */
.chat-widget[b-2sm9oeewfi] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

    /* Closed state (slide down + fade) */
    .chat-widget.closed[b-2sm9oeewfi] {
        transform: translateY(20px);
        opacity: 0;
        pointer-events: none;
    }

/* Header */
.chat-header[b-2sm9oeewfi] {
    background: #0078d4;
    color: white;
    padding: 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.chat-close-btn[b-2sm9oeewfi] {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Chat body */
.chat-body[b-2sm9oeewfi] {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f5f5f5;
}

/* Messages */
.chat-message[b-2sm9oeewfi] {
    max-width: 80%;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.3;
}

    .chat-message.user[b-2sm9oeewfi] {
        background: #0078d4;
        color: white;
        margin-left: auto;
    }

    .chat-message.bot[b-2sm9oeewfi] {
        background: #e0e0e0;
        color: #333;
        margin-right: auto;
    }

/* Input area */
.chat-input[b-2sm9oeewfi] {
    display: flex;
    padding: 8px;
    background: #fff;
    border-top: 1px solid #ddd;
}

    .chat-input input[b-2sm9oeewfi] {
        flex: 1;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 6px;
        margin-right: 8px;
    }

    .chat-input button[b-2sm9oeewfi] {
        background: #0078d4;
        color: white;
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        cursor: pointer;
    }

.chat-unread-badge[b-2sm9oeewfi] {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}














/* Base container */
.st-landing[b-2sm9oeewfi] {
    font-family: 'Segoe UI', sans-serif;
    color: #e6e6e6;
    background-color: #303030;
    padding-bottom: 60px;
}

/* Logo */
.st-logo[b-2sm9oeewfi] {
    width: 340px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.6));
}

/* Hero Section */
.st-hero[b-2sm9oeewfi] {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a, #0f3d63);
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .st-hero h1[b-2sm9oeewfi] {
        font-size: 3rem;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .st-hero .tagline[b-2sm9oeewfi] {
        font-size: 1.3rem;
        margin-bottom: 20px;
        opacity: 0.85;
    }

    .st-hero .intro[b-2sm9oeewfi] {
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
        line-height: 1.6;
        opacity: 0.9;
    }

/* Sections */
.st-section[b-2sm9oeewfi] {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

    .st-section h2[b-2sm9oeewfi] {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2rem;
        color: #ffffff;
    }

/* Cards */
.st-grid[b-2sm9oeewfi] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.st-card[b-2sm9oeewfi] {
    background: #3c3c3c;
    padding: 25px;
    border-radius: 10px;
    flex: 1 1 260px;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

    .st-card h3[b-2sm9oeewfi] {
        margin-bottom: 10px;
        font-size: 1.3rem;
        color: #ffffff;
    }

    .st-card p[b-2sm9oeewfi] {
        color: #d0d0d0;
        line-height: 1.5;
    }

/* Benefits List */
.st-benefits[b-2sm9oeewfi] {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

    .st-benefits li[b-2sm9oeewfi] {
        margin: 12px 0;
        font-size: 1.1rem;
        line-height: 1.5;
        color: #dcdcdc;
    }

    .st-benefits strong[b-2sm9oeewfi] {
        color: #ffffff;
    }



.safeandwellreport[b-2sm9oeewfi] {
    position: absolute;
    top: 20px;
    left: 100px;
    height: fit-content;
    z-index: 1000;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 8px;
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.8);
}

.titlecontainer[b-2sm9oeewfi]{
    margin-bottom:10px;
}

.titlelabel[b-2sm9oeewfi] {
    font-size: 2rem;
    font-weight: bold;
    color: #690308;
}

.reportheader[b-2sm9oeewfi] {
    margin-bottom: 10px;
}

.headerlabel[b-2sm9oeewfi] {
    font-weight: bold;
    font-size: 1.2rem;
    color: #072466;
}

.reporttablecontainer[b-2sm9oeewfi] {
    border-style: solid;
    border-color: #d6d6d6;
    border-radius: 8px;
    padding: 20px;
    border-width: 1px;
    margin-bottom:20px;
}

.reporttable[b-2sm9oeewfi] {
    margin-bottom: 0px;
    width:100%;
    
}

.reportheaderrow[b-2sm9oeewfi]{

}

.reportheadercell[b-2sm9oeewfi] {
    background-color: #c1c4c9;
    font-weight:300;
    padding:4px;
}

.reporttablerow[b-2sm9oeewfi] {
    
}

    .reporttablerow:hover[b-2sm9oeewfi] {
        background-color: #e1f3f5;
    }

.reporttablecell[b-2sm9oeewfi] {
    vertical-align: middle;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right:30px;
    font-size:1rem;
}

    .reporttablecell input[type="checkbox"][b-2sm9oeewfi] {
        margin-top: 4px;
        margin-bottom: 0;
    }

.checkboxcell[b-2sm9oeewfi] {
    text-align: center;
}

.reportcomments[b-2sm9oeewfi] {
}

.submitreportcontainer[b-2sm9oeewfi]{
    width:100%;
    display:flex;
    flex-direction:row;
    margin-top:20px;
}

.submitbutton[b-2sm9oeewfi] {
    background: #0078d4;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    margin-right:10px;
    margin-left:auto;
}
