/* /Components/Pages/Admin/AdminDashboard.razor.rz.scp.css */
/* /Components/Pages/Admin/Events.razor.rz.scp.css */
/* /Components/Pages/Admin/Payments.razor.rz.scp.css */
/* /Components/Pages/Admin/SystemMessaging.razor.rz.scp.css */
/* /Components/Pages/Agents/AgentDashboard.razor.rz.scp.css */
.docker-connection-setup-card[b-guuq8t1xmb] {
    padding: 24px;
    display: flex;
    width: 100%;
    flex-direction: column;
    border-radius: 24px;
}

.running-container[b-guuq8t1xmb] {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--mud-palette-primary);
}
/* /Components/Pages/DeleteAccount.razor.rz.scp.css */
.delete-account-container[b-18ud1z5128] {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 32px;
    padding-bottom: 64px;
}

.centered-bold-text[b-18ud1z5128] {
    text-align: center;
    font-weight: bold;
    opacity: 0;
}

.note-container[b-18ud1z5128] {
    margin-top: 32px;
    padding: 16px;
}

.step-image-container[b-18ud1z5128] {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 350 / 750;
    opacity: 0;
}

.step-image[b-18ud1z5128] {
    height: 100%;
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
}

.step-blurb-container[b-18ud1z5128] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    max-width: 435px;
    opacity: 0;
}

.apply-fade-up[b-18ud1z5128] {
    opacity: 0;
}

body.loaded .apply-fade-up[b-18ud1z5128] {
    animation: fade-up-b-18ud1z5128 1s ease-out forwards;
}

@keyframes fade-up-b-18ud1z5128 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (width < 600px) {
    .delete-account-container[b-18ud1z5128] {
        max-width: 100%;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-content-container[b-embl1hjmq7] {
    max-width: 50%; 
    margin-left: auto; 
    margin-right: auto;
}

.app-download-container[b-embl1hjmq7] {
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tos-blurb[b-embl1hjmq7] {
    max-width: 400px;
    margin-left: auto; 
    margin-right: auto;
    text-align: center;
    padding-bottom: 48px;
}

.tos-link[b-embl1hjmq7] {
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

@media (width < 600px) {
    .home-content-container[b-embl1hjmq7] {
        max-width: 100%;
    }
}

.halo-image-container[b-embl1hjmq7] {
    width: 100%; 
    max-width: 350px; 
    aspect-ratio: 350 / 750;
    opacity: 0;
}

.halo-image[b-embl1hjmq7] {
    height: 100%; 
    width: 100%; 
    border-radius: 12px;
}

.halo-blurb-container[b-embl1hjmq7] {
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    padding-left: 24px; 
    padding-right: 24px;
    text-align: center;
    max-width: 435px;
    opacity: 0;
}

.apply-fade-up[b-embl1hjmq7] {
    opacity: 0;
}

body.loaded .apply-fade-up[b-embl1hjmq7] {
    animation: fade-up-b-embl1hjmq7 1s ease-out forwards;
}

@keyframes fade-up-b-embl1hjmq7 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Pages/Login/Login.razor.rz.scp.css */
.login-container[b-ejh4kl3jwy] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
}

.login-form[b-ejh4kl3jwy] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 40%;
}

@media (width < 500px) {
    .login-form[b-ejh4kl3jwy] {
        width: 80%;
    }
}
/* /Components/Pages/TermsOfService.razor.rz.scp.css */
/* /Components/Pieces/Modal.razor.rz.scp.css */
.modal-backdrop[b-mqpsi1bd8m] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1350;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align to bottom for drawer effect */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.show[b-mqpsi1bd8m] {
    opacity: 1;
    visibility: visible;
}

.modal-container[b-mqpsi1bd8m] {
    position: relative;
    z-index: 1360;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border-radius: 24px 24px 0 0;
    background-color: var(--mud-palette-background);
    transition: width 0.3s ease, height 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100%); /* Start off-screen at the bottom */
    overflow: auto;
}

.modal-backdrop.show .modal-container[b-mqpsi1bd8m] {
    transform: translateY(0); /* Slide up to original position */
}

/* 0px screen width => 100% width of screen, 100% height of screen */
@media (max-width: 500px) {
    .modal-container[b-mqpsi1bd8m] {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

/* >500px screen width => 75% width of screen, 75% height of screen */
@media (min-width: 501px) and (max-width: 900px) {
    .modal-container[b-mqpsi1bd8m] {
        width: 75%;
        height: 75%;
    }
}

/* >900px screen width => 60% width of screen, 60% height of screen */
@media (min-width: 901px) {
    .modal-container[b-mqpsi1bd8m] {
        width: 60%;
        height: 60%;
    }
}

.modal-header-section[b-mqpsi1bd8m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.header-content[b-mqpsi1bd8m] {
    flex-grow: 1;
}

.modal-body-section[b-mqpsi1bd8m] {
    flex-grow: 1;
}

.modal-footer-section[b-mqpsi1bd8m] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
}

.close-button[b-mqpsi1bd8m] {
    position: absolute;
    top: 8px;
    right: 8px;
}
