/* _content/EpicApp.Components.Generic/Components/GlobalNotification/GlobalNotificationComponent.razor.rz.scp.css */
.content-container[b-wkqsletooc] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /*filter: drop-shadow(0px 6px 14px rgba(0, 0, 0, 0.1));*/
    pointer-events: all;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6) !important;
    position: fixed;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
}

.content-container > .content[b-wkqsletooc] {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 450px;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.content-container > .content > .top[b-wkqsletooc] {
    font-size: 20px;
    color: #333;
}

.content-container > .content > .middle[b-wkqsletooc] {
    font-size: 16px;
    color: #555;
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.content-container > .content > .middle p[b-wkqsletooc] {
    word-break: break-all;
}

.content-container > .content > .buttons-group[b-wkqsletooc] {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.content-container .content .btn[b-wkqsletooc] {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #265EA7;
    padding: 8px 48px;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #265EA7;
}

@media(max-width: 600px) {
    .content-container > .content[b-wkqsletooc] {
        max-width: 350px;
    }
}

@media(max-width: 420px) {
    .content-container > .content[b-wkqsletooc] {
        max-width: 250px;
    }
}
