/* _content/GameTools.BlazorClient/Components/Common/ConfirmationDialog.razor.rz.scp.css */
:root[b-pk0phjon8z] {
    --color-light-yellow: rgb(255, 254, 189);
    --color-accent-red:rgb(147, 12, 16);
    --color-accent-light:rgb(247, 206, 101);
    --color-accent-dark:rgb(41, 0, 0);

    --dialog-overlay-bg: rgba(0, 0, 0, 0.75);
    --dialog-content-bg: #1a1a1a;
    --dialog-text-color: #ffffff;
    --dialog-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    
    --font-set-fancy: 'Almendra', serif;
    --font-set-text: 'Outfit', sans-serif;
}

#dialog-overlay[b-pk0phjon8z] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 206, 101, 0.4); /* translucent color-accent-light */
    -webkit-backdrop-filter: blur(5px); /* Safari support */
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog-content[b-pk0phjon8z] {
    background-color: var(--color-light-yellow);
    color: var(--color-accent-dark);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid var(--color-accent-dark);
    box-shadow: var(--dialog-shadow);
    width: 90dvw;
    max-height: 90dvh;
    max-width: 500px;
    margin: auto;
}

.dialog-header[b-pk0phjon8z] {
    margin-bottom: 1.5rem;
    background-color: var(--color-accent-red);
    margin: -2rem -2rem 1.5rem -2rem;
    padding: 1rem 2rem;
    border-radius: 0.4rem 0.4rem 0 0;
}

.dialog-header h5[b-pk0phjon8z] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-set-fancy);
    color: var(--color-light-yellow);
}

.dialog-body[b-pk0phjon8z] {
    margin: 1.5rem 0;
    line-height: 1.5;
    font-family: var(--font-set-text);
}

.dialog-footer[b-pk0phjon8z] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 1px solid var(--color-accent-dark);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.dialog-footer button[b-pk0phjon8z] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    border: 1px solid var(--color-accent-dark);
    font-weight: 500;
    font-family: var(--font-set-text);
    transition: all 0.2s ease;
}

.dialog-footer button:first-child[b-pk0phjon8z] {
    background-color: var(--color-light-yellow);
    color: var(--color-accent-dark);
}

.dialog-footer button:last-child[b-pk0phjon8z] {
    background-color: var(--color-accent-red);
    color: var(--color-light-yellow);
}

.dialog-footer button:hover[b-pk0phjon8z] {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(41, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
    .dialog-content[b-pk0phjon8z] {
        min-width: 400px;
        max-width: 800px;
        padding: 2.5rem;
    }
}
/* _content/GameTools.BlazorClient/Components/Common/ObjectFilterForm.razor.rz.scp.css */
.filter-form[b-oobtwb1opo]{
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:stretch;  /* Changed from flex-start */
}

.filter-field-group[b-oobtwb1opo]
{
    display:flex;        /* Changed from inline-flex */
    flex-direction:row;
    justify-content:flex-start;  /* Changed from flex-start */
    align-items:center;
    width:100%;          /* Added */
    gap:0.5rem;         /* Added to ensure spacing between items */
}

.filter-button-group[b-oobtwb1opo]{
    display:inline-flex;
    flex-direction:row;
    flex:1 0 auto;
    justify-content:flex-end;
    align-items:center;
}

.filter-form-column[b-oobtwb1opo]{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
}

.filter-item[b-oobtwb1opo]{
    margin:0;
    padding:.25rem;
    display:flex;
    flex:1;             /* Changed from flex: 1 0 auto */
    flex-direction:column;
    justify-content:flex-start;
    align-items:stretch; /* Changed from flex-start */
    min-width:0;        /* Added to prevent overflow */
}

.filter-item-label[b-oobtwb1opo]{
    font-family:var(--font-set-text);
}

.filter-form-clear[b-oobtwb1opo]{
    background-color: var(--color-light-yellow);
    color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

@media screen and (min-width: 768px) {
    .filter-form[b-oobtwb1opo] {
        flex-direction: row; 
        align-items: center; 
        justify-content: flex-start;
    }
    .filter-item[b-oobtwb1opo] {
        flex: 1 0 auto;
        align-items: flex-start;
    }
}
/* _content/GameTools.BlazorClient/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ce0uson3j5] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ce0uson3j5] {
    flex: 1;
}

.sidebar[b-ce0uson3j5] {
    background-image: 
            linear-gradient(180deg, 
                            rgba(41, 0, 0, 1) 0%, 
                            rgba(147, 12, 16, 1) 50%,
                            rgba(147, 12, 16, 1) 100%);

}

.top-row[b-ce0uson3j5] {
    background-color: #290000;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ce0uson3j5]  a, .top-row[b-ce0uson3j5]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ce0uson3j5]  a:hover, .top-row[b-ce0uson3j5]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ce0uson3j5]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ce0uson3j5] {
        justify-content: space-between;
    }

    .top-row[b-ce0uson3j5]  a, .top-row[b-ce0uson3j5]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ce0uson3j5] {
        flex-direction: row;
    }

    .sidebar[b-ce0uson3j5] {
        width: 250px;
        height: 100%;
        position: sticky;
        top: 0;
        background-image: 
            linear-gradient(90deg, 
                            rgba(41, 0, 0, 1) 0%, 
                            rgba(147, 12, 16, 1) 50%,
                            rgba(147, 12, 16, 1) 100%);

    }

    .top-row[b-ce0uson3j5] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ce0uson3j5]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ce0uson3j5], article[b-ce0uson3j5] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-ce0uson3j5] {
    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-ce0uson3j5] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/GameTools.BlazorClient/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ah08dnoue6] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: rgb(255,254,189);
    position: absolute;
    top: 0.8rem;
    right: 1.25rem;
    border: 1px solid rgba(255,254,189, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,254,189, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 254, 189, 0.1);
}

.navbar-toggler:checked[b-ah08dnoue6] {
    background-color: rgba(255,254,189, 0.5);
}

.top-row[b-ah08dnoue6] {
    height: 3rem;
    background-color: rgba(3,3,3,0.4);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 0 0 0 1rem;
    margin:0;
}

.navbar-brand[b-ah08dnoue6] {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(255,254,189);
}

.bi[b-ah08dnoue6] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ah08dnoue6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ah08dnoue6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ah08dnoue6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.flex-column-split[b-ah08dnoue6] {
    flex-grow:1;
    height:100%;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-section[b-ah08dnoue6]{
    border-top: solid 1px rgb(255, 254, 189);
}

.nav-section:first-of-type[b-ah08dnoue6]{
    border:unset;
}

.nav-section-label[b-ah08dnoue6]{
    font-size: 1.1rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
    color:rgb(255,254,189);
}

.nav-item[b-ah08dnoue6] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ah08dnoue6] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ah08dnoue6] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ah08dnoue6]  .nav-link {
        color: rgb(255,254,189);
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 95%;
        padding: 0 .75rem;
        margin: 0 .5rem;
    }

.nav-item[b-ah08dnoue6]  a.active {
    background-color: rgba(255,254,189,0.37);
    color: rgb(255,254,189);
}

.nav-item[b-ah08dnoue6]  .nav-link:hover {
    background-color: rgba(255,254,189,0.1);
    color: rgb(255,254,189);
}

.nav-scrollable[b-ah08dnoue6] {
    display: none;
}

#NavMenuToggle:checked ~ .nav-scrollable[b-ah08dnoue6] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ah08dnoue6] {
        display: none;
    }

    .nav-scrollable[b-ah08dnoue6] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/GameTools.BlazorClient/Components/Pages/ComponentServices/ContentLoadingComponent.razor.rz.scp.css */
#LoadingOverlay[b-qzp8yk9fv3] {
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:1000;
    
    font-size: 2rem;
    font-weight: bold;
    display:flex;
    padding:2rem;
    background-color:rgba(255, 254, 189, 0.50);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.overlay-content[b-qzp8yk9fv3] {
    flex-grow:1;height:100%;
    background-color:rgba(247, 206, 101, 0.50);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    border-radius:1rem;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    
    box-shadow: 
        0px 0px 5px 3px rgba(0,0,0,0.25),
        0px 0px 3px 3px rgba(255,255,255,0.25),
        2px 2px 5px 3px rgba(255,255,255,0.25) inset,
        -1px -1px 3px 0px rgba(0,0,0,0.25) inset;
    ;
}
/* _content/GameTools.BlazorClient/Components/Pages/Partials/NpcList.razor.rz.scp.css */
.npc-list[b-h3lvmsf9cu] {
    /*padding-top: .5em;
    border-top: solid 1px black;*/
    padding-bottom: .25em;
    margin-bottom: .75em;
    display:flex;
    flex-direction:column;
}

.npc-list .npc-list-item:nth-child(odd)[b-h3lvmsf9cu] {
    background-color: rgba(0, 0, 0, .1);
}

.npc-list-item[b-h3lvmsf9cu] {
    border: solid 1px #ACACAC;
    border-radius: .5em;
    margin-bottom: .15em;
    padding: .5em;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
}

.npc-list-item-data[b-h3lvmsf9cu]{
    display:flex;
    flex-direction:column;
    /*justify-content:flex-start;*/
}

.npc-list-item-actions[b-h3lvmsf9cu]{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap: .2rem;
}

.npc-list-item-actions > button[b-h3lvmsf9cu] {
    display: flex;
    justify-content: center;
    align-items: center;
    height:2rem;
}

.button-text[b-h3lvmsf9cu]{
    display:none;
}

.icon[b-h3lvmsf9cu] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    background-size: cover;
}

.npc-name-label[b-h3lvmsf9cu] {
    font-family: var(--font-set-fancy);
    font-size:1.2rem;
    font-weight:bold;
}

.npc-list-detail[b-h3lvmsf9cu] {
    padding-left: 1rem;
    font-size:1.2rem;
}

@media screen and (min-width: 768px) {
    .npc-list-item-data[b-h3lvmsf9cu] {
        flex-direction:row;
        flex-wrap:wrap;
    }

    .button-text[b-h3lvmsf9cu]{
        display:inline;
    }

    .icon[b-h3lvmsf9cu] {
        margin-right: 0.75rem;
    }
}
/* _content/GameTools.BlazorClient/Components/Pages/Partials/StatView5e.razor.rz.scp.css */
.game-stats[b-hx3ndtecyu]{
    display:flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin:0;
    border: solid 1px var(--color-accent-red);
    border-radius: .5rem;
}



.stats-container[b-hx3ndtecyu]{
    display:flex;
    flex-direction:row;
    justify-content: space-around;
    padding: 0;
    margin:0;
    gap:.5rem;
}

.ability-scores[b-hx3ndtecyu]{
    display:flex;
    flex-direction:column;
    justify-content: space-around;
    align-items: center;
    /* width: 100%; */
    padding: 0;
    margin:0;
    gap:.1rem;
}

.ability-score[b-hx3ndtecyu]{
    padding:.125rem;
    display:flex;
    flex-direction:row;
    justify-content: flex-start;
    align-items:center;
}

.ability-score h3[b-hx3ndtecyu]{
    font-size: .8rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-right:.1rem;
}

.ability-score .value[b-hx3ndtecyu]{
    font-size: .8rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-align: center;
}

.ability-score .modifier[b-hx3ndtecyu]{
    
    font-size: .8rem;
    font-weight: normal;
    padding: 0;
    text-align: center;
    margin-left:.1rem;
}

.secondary-stats[b-hx3ndtecyu]{
    display:flex;
    flex-direction:row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0;
    margin:0;
    margin-top: .5rem;
    border-top: solid 1px var(--color-accent-red);
}

.secondary-stat[b-hx3ndtecyu]{
    /* border: 2px solid var(--color-accent-dark);
    border-radius: .25rem; */
    padding:.25rem;
    display:flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: center;
}

.secondary-stat h3[b-hx3ndtecyu]{
    font-size: .8rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-right:.2rem;
}

.secondary-stat .value[b-hx3ndtecyu]{
    display:block;
    font-size: .8rem;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-align: center;
}
/* _content/GameTools.BlazorClient/Components/Pages/Partials/UsageInformation.razor.rz.scp.css */
.quotaContainer[b-00e81mrfio]{
    display:flex;
    flex-direction: row;
    justify-content:space-around;
    align-content:center;
    align-items:center;
}

span[b-00e81mrfio] {
    font-weight: bold;
    padding: 0.1rem 0.75rem;
    background-color: lightgray;
    border-radius: 0.25rem;
    border:1px solid gray;
}
/* _content/GameTools.BlazorClient/Components/Pages/Partials/ViewNpcAttributes.razor.rz.scp.css */
.task-host header[b-3gpnfugnx3] {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.task-host header heading[b-3gpnfugnx3]{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
}

.options-panel[b-3gpnfugnx3]{
    display:flex;
    flex-direction: column;
}

.options-panel[b-3gpnfugnx3] {
    flex:1 0 auto;
}

@media only screen and (min-width: 600px) {
        .options-panel[b-3gpnfugnx3]{
            flex-direction:row;
            justify-content:flex-start;
            gap: 1.5rem;
        }
    }
