/* _content/Kine.PassCulture.UI/Components/Layout/CultureSelector.razor.rz.scp.css */
/* _content/Kine.PassCulture.UI/Components/Layout/MainLayout.razor.rz.scp.css */
/* Container that fills the viewport */
.page[b-bsltq2f5dv] {
    display: flex;
    flex-direction: column;
    width: 100vw;
}

.header[b-bsltq2f5dv] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #003761;
    padding: 0.4rem;
    gap: 0.5rem;
}

.header-content[b-bsltq2f5dv] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 50rem;
    background-color: #003761;
    padding: 0.4rem;
}

.logo[b-bsltq2f5dv] {
    cursor: pointer;
    height: 2rem;
}

.links[b-bsltq2f5dv] {
    width: fit-content;
}

.header-link[b-bsltq2f5dv] {
    color: floralwhite;
    margin-right: 1rem;
    font-size: 0.8rem;
}

/* Center main content using flexbox */
main[b-bsltq2f5dv] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Blazor error UI styling */
#blazor-error-ui[b-bsltq2f5dv] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-bsltq2f5dv] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Kine.PassCulture.UI/Components/Pages/Home.razor.rz.scp.css */
.home-content[b-g1hicdalhu] {
    width: 100%;
    max-width: 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 60vh;
}

.loading[b-g1hicdalhu] {
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-img[b-g1hicdalhu] {
    height: 6rem;
    width: 6rem;
    margin-bottom: 1rem;
    animation: breathing 2s ease-in-out infinite;
}


.spinner[b-g1hicdalhu] {
    animation: spin 1s linear infinite;
    border: 0.5rem solid silver;
    border-top: 0.5rem solid #337AB7;
    border-radius: 50%;
    height: 2.5rem;
    width: 2.5rem;
}

top-banner[b-g1hicdalhu] {
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.banner-img[b-g1hicdalhu] {
    width: 100%;
    max-width: 50rem;
}


.text-block[b-g1hicdalhu] {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50rem;
    padding: 1rem 1rem 0.2rem 1rem
}

.info[b-g1hicdalhu] {
    color: #b8216a;
    font-weight: bold;
}


.card[b-g1hicdalhu] {
    width: 100%;
    max-width: 90vw;
    margin: 0.5rem 1rem 1rem 1rem;
}

.card-body[b-g1hicdalhu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.exiry-date[b-g1hicdalhu] {
    font-weight: bold;
}

#form[b-g1hicdalhu] {
    width: 100%;
}

#form-group[b-g1hicdalhu] {
    margin-bottom: 1rem;
}

#submit-button[b-g1hicdalhu] {
    margin-top: 1rem;
}

.error-title[b-g1hicdalhu] {
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem 0 1rem 0;
    color: #4b5563;
}

.error-list[b-g1hicdalhu] {
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.error-container[b-g1hicdalhu] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fef3c7; /* subtle warning tone */
    border: 0.1rem solid #fcd34d; /* border for definition */
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #92400e;
    text-align:center;
}

.warning-logo[b-g1hicdalhu] {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.try-again-button[b-g1hicdalhu] {
    display: block;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .try-again-button:hover[b-g1hicdalhu] {
        background-color: #1d4ed8;
    }
/* _content/Kine.PassCulture.UI/Components/Shared/Modal.razor.rz.scp.css */
/* CenteredModal.razor.css */
.modal-anchor[b-1smpxk8y2n] {
    display: inline-block;
}

.modal-content[b-1smpxk8y2n] {

    background-color: white;
    border-radius: 0.5rem;
    left: 50%;
    max-height: 90%;
    width: 50rem;
    max-width: 90%;
    overflow: auto;
    padding: 2rem;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal-close[b-1smpxk8y2n] {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}

.modal-overlay[b-1smpxk8y2n] {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index:10;
}
