@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* _content/AdaptiveArtists/Components/Artists/Pages/Index.razor.rz.scp.css */
label[b-fq1n65mx5h],
input[b-fq1n65mx5h],
select[b-fq1n65mx5h],
button[b-fq1n65mx5h] {
    font-size: 0.75em; /* Reduces text size by 25% */
}

.page-layout[b-fq1n65mx5h] {
    display: block !important;
    flex-direction: unset !important;
    align-items: unset !important;
}

.intro-paragraph[b-fq1n65mx5h] {
    margin-bottom: 1.5rem;
    font-size: 1.1em;
}

.main-content[b-fq1n65mx5h] {
    display: flex;
    
    flex: 1;
 
}

.artists-content[b-fq1n65mx5h] {
    flex: 1 1 0;
    min-width: 0;
    min-height: 0;
}


.bb-grid-container[b-fq1n65mx5h] {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    /*grid-template-rows: repeat(8, 1fr);*/
    gap: 1rem;
    /*width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;*/ /* Maintain square aspect ratio */
    padding: 1rem;
}

.bb-card-wrapper[b-fq1n65mx5h] {
    width: 100%;
    /*height: 100%;*/
    aspect-ratio: 1 / 1; /* Makes each card square */
    display: flex;
}

    .bb-card-wrapper:hover[b-fq1n65mx5h] {
        z-index: 2000;
    }


@media (max-width: 991.98px) {
    .bb-grid-container[b-fq1n65mx5h] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .bb-card-wrapper[b-fq1n65mx5h] {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media (max-width: 575.98px) {
    .bb-grid-container[b-fq1n65mx5h] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .bb-card-wrapper[b-fq1n65mx5h] {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}



@media (min-width: 768px) {
    .show-filters-mobile[b-fq1n65mx5h] {
        display: none !important;
    }

    .sticky-filter-panel[b-fq1n65mx5h] {
        position: sticky;
        top: 4.5em;
        z-index: 1020; /* Ensure it stays above other content */

    }

/*    .show-sorting-on-panel-desktop {
        display: inline-block !important;
    }

    .show-sorting-on-panel-mobile {
        display: none !important;
    }*/

}

@media (max-width: 767.98px) {
    .show-filters-mobile[b-fq1n65mx5h] {
        display: inline-block !important;
    }

    .sticky-filter-panel[b-fq1n65mx5h] {
    }

/*    .show-sorting-on-panel-desktop {
        display: none !important;
    }

    .show-sorting-on-panel-mobile {
        display: inline-block !important;
    }*/
}

@media (max-width: 1130px) {
    .artist-card-col[b-fq1n65mx5h] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
/* _content/AdaptiveArtists/Components/Artists/Pages/Manage/ArtistDashboard.razor.rz.scp.css */

/* _content/AdaptiveArtists/Components/Artists/Shared/ArtistCard.razor.rz.scp.css */
.card-container[b-mqohjlpwpk] {
    perspective: 1000px;
    /*margin-bottom: 1rem;*/
    width: 100%; /* Set your desired card width */
    max-width: 100%;
}

.card[b-mqohjlpwpk] {
    width: 100%; /* Fill the container */
    height: 100%;
    transition: transform 0.6s, border 0.3s, box-shadow 0.3s;
    transform-style: preserve-3d;
    position: relative;
    border: 1px solid transparent;
    display: flex;
    /*grid-template-rows: auto 1fr auto;*/ /* Title, image/content, footer */
}

.card-front[b-mqohjlpwpk], .card-back[b-mqohjlpwpk] {
    backface-visibility: hidden;
    /*grid-area: 1 / 1 / 2 / 2;*/ /* Position both sides in the same grid area */
}

.card-front[b-mqohjlpwpk] {
    z-index: 2;
    transform: rotateY(0deg);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

    .card-front .card-body[b-mqohjlpwpk] {
        flex: 1 1 50%;
        height: 50%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 10;
    }

.artist-photo-wrapper[b-mqohjlpwpk] {
    position: relative;
    flex: 0 0 50%;
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /*background: #222;*/ /* Optional: letterbox background */
}


    .artist-photo-wrapper[b-mqohjlpwpk]::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: var(--artist-bg-url);
        background-size: cover;
        background-position: center;
        filter: blur(15px) brightness(0.9); /* Adjust blur and brightness as needed */
        transition: filter 0.3s;
    }

.artist-photo[b-mqohjlpwpk] {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Show the whole image */
    border-radius: 8px;
    display: block;
}


.card-back[b-mqohjlpwpk] {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
    width: 100%;
}

.card-container:hover .card:not(.flipped)[b-mqohjlpwpk] {
    border: 2px solid purple;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.card.flipped[b-mqohjlpwpk] {
    transform: rotateY(180deg);
    border: 2px solid purple;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/*.artist-photo {
    width: auto;*/
    /*max-width: 240px;*/
    /*height: auto;*/
    /*aspect-ratio: 1 / 1;*/ /* Maintain square aspect ratio */
    /*object-fit: cover;
    border-radius: 8px;*/ /* Optional: for rounded corners */
    /*display: block;
    margin: 0 auto;
}*/

@media (max-width: 767.98px) {
    .card-container[b-mqohjlpwpk] {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .artist-photo[b-mqohjlpwpk] {
        height: 240px;
    }
}
/* _content/AdaptiveArtists/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-vy9v0d7wxy] {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /*calc(100vh - 4.5em);*/
    padding-top: 4.5em;
    max-width: 1500px;
    margin: 0 auto;
}

main[b-vy9v0d7wxy] {
    display: flex;
    flex: 1;
    overflow-x: visible;
    height: auto !important;
}

.top-nav[b-vy9v0d7wxy] {
    background-color: var(--bs-light);
    /*padding: 1rem;*/
}

.content[b-vy9v0d7wxy] {
    flex: 1 0;
    padding: 0.5rem;
}

.bottom-nav[b-vy9v0d7wxy]  {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background-color: var(--bs-light);
    flex-shrink: 0;
}

.sidebar[b-vy9v0d7wxy] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

@media (max-width: 767.98px) {
}

@media (min-width: 768px) {
    .page[b-vy9v0d7wxy] {
    
    }

    .sidebar[b-vy9v0d7wxy] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    article[b-vy9v0d7wxy] {
        padding-left: .2rem !important;
        padding-right: .2rem !important;
    }
}

#blazor-error-ui[b-vy9v0d7wxy] {
    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-vy9v0d7wxy] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/AdaptiveArtists/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-nav .dropdown-menu-end[b-5gwjy708yx] {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    transform: translate3d(8px, 45px, 0px) !important;
}

.nav-item[b-5gwjy708yx]  .hover-light {
    color: var(--bs-dark);
    font-size: 0.8em;
    text-decoration: none;
    transition: color 0.3s, box-shadow 0.3s;
}

    .nav-item[b-5gwjy708yx]  .hover-light:hover {
        color: var(--bs-primary);
        font-size: 0.8em;
        /*box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);*/
    }

.nav-item[b-5gwjy708yx]  .hover-dark {
    color: var(--bs-light);
    text-decoration: none;
    transition: color 0.3s, box-shadow 0.3s;
}

    .nav-item[b-5gwjy708yx]  .hover-dark:hover {
        color: var(--bs-primary);
        background-color: var(--bs-light);
        box-shadow: inset 5px 0 5px -5px rgba(0, 0, 0, 0.5), inset -5px 0 5px -5px rgba(0, 0, 0, 0.5);
    }

.main-shadow[b-5gwjy708yx] {
    box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.6);
}

.nav-container[b-5gwjy708yx] {
    display: flex;
}
.logo-cell[b-5gwjy708yx] {
    width: 4.5em;
    height: 4.5em;
    top: .1em;
    left: .1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.per-nav[b-5gwjy708yx] {
    flex: 1;
    display: flex;
    align-items: center;
}

.wer-nav[b-5gwjy708yx] {
    flex: 1;
    display: flex;
    align-items: center;
}


.upper-nav[b-5gwjy708yx] {
    flex: 1;
    display: flex;
    text-align: right;
    justify-content: space-between;
    background-color: var(--bs-light);
    height: 1.5em;
    padding: 0;
    border-bottom-left-radius: 1.5em;
    box-shadow: inset 0px -1px 8px -1px rgba(0, 0, 0, 0.5),
                 inset -1px 0px 8px -1px rgba(0, 0, 0, 0.5); /* Left shadow */
}

.lower-nav[b-5gwjy708yx] {
    flex: 1;
    display: flex;
    position: relative;
/*    box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.6);*/
    height: 3em;
}

.limited-width[b-5gwjy708yx] {
    max-width: 1500px;
    margin: 0 auto;
}



.side-nav[b-5gwjy708yx] {
    /*position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 200px;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-200px);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
    padding-top: 60px;*/ /* Adjust based on your upper-nav height */
    background-color: var(--bs-dark);
    box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.6), 0px -1px 12px 0px rgba(0, 0, 0, 0.6);
}

    .side-nav.open[b-5gwjy708yx] {
        transform: translateX(0);
    }

    .side-nav ul[b-5gwjy708yx] {
        padding-top: 75px;
        flex-direction: column;
        width: 100%;
    }

        .side-nav ul li[b-5gwjy708yx] {
            width: 100%;
        }

            .side-nav ul li a[b-5gwjy708yx] {
                width: 100%;
                text-align: left;
                padding: 1rem;
            }

.logo-container[b-5gwjy708yx] {
    position: absolute;
    /*        left: 50%;
    transform: translateX(-50%);*/
    top: -20px;
    z-index: 100;
}

.center-logo[b-5gwjy708yx] {
    width: 4em;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
}

.side-nav-logo[b-5gwjy708yx] {
    width: 90px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
    margin: 1rem;
    position: absolute;
    top: 10px;
    left: 10px;
}

.custom-toggler:focus[b-5gwjy708yx] {
    outline: none;
    box-shadow: none;
}

.close-btn[b-5gwjy708yx] {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: var(--bs-light);
    cursor: pointer;
}

@media (max-width: 767.98px) {
    .upper-nav[b-5gwjy708yx] {
        height: 3em;
    }

    .lower-nav[b-5gwjy708yx] {
        display: none !important;
    }

    .hover-light[b-5gwjy708yx] {
        font-size: 1.5em;
        font-weight: bold;
    }

        .hover-light:hover[b-5gwjy708yx] {
            font-size: 1.5em;
            font-weight: bold;
        }

    .mobile-edge-trigger[b-5gwjy708yx] {
        position: fixed;
        top: 0;
        left: 0;
        width: 4px;
        height: 100vh;
        z-index: 9999;
        display: block;
    }
}

@media (min-width: 768px) {
    .side-nav[b-5gwjy708yx] {
        display: none;
    }

    .close-btn[b-5gwjy708yx] {
        display: none;
    }

    .mobile-edge-trigger[b-5gwjy708yx] {
        display: none !important;
    }
}


.bi[b-5gwjy708yx] {
    display: inline-block;
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.75rem;
    top: 2px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-5gwjy708yx] {
    background-image: url('/images/icons/house-door-fill.svg');
}

.bi-plus-square-fill-nav-menu[b-5gwjy708yx] {
    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-5gwjy708yx] {
    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 fill-rule='evenodd' 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");
}

.bi-lock-nav-menu[b-5gwjy708yx] {
    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='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-5gwjy708yx] {
    background-image: url('/images/icons/person-circle.svg');
}

.bi-person-badge-nav-menu[b-5gwjy708yx] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-5gwjy708yx] {
    background-image: url('/images/icons/person-circle-green.svg');
}

.bi-arrow-bar-left-nav-menu[b-5gwjy708yx] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.bi-bag-nav-menu[b-5gwjy708yx] {
    background-image: url('/images/icons/bag.svg');
}
/* _content/AdaptiveArtists/Components/Shared/Artwork/AddOrUpdateArtworkModal.razor.rz.scp.css */
/* _content/AdaptiveArtists/Components/Shared/FilterPanel/FilterPanel.razor.rz.scp.css */


.filter-panel[b-a506ajbae7] {
    /* Match the page background (Bootstrap: var(--bs-light)) */
    background-color: var(--bs-light) !important;
    /* Add a thin border to the top and left */
    border-top: 1px solid var(--bs-primary);
    border-left: 1px solid var(--bs-primary);
    /* Optional: remove any box-shadow or border-radius if present */
    box-shadow: none;
    border-radius: 0;
}


/* Desktop: show panel, hide button/overlay */
@media (min-width: 768px) {
    .filter-panel-desktop[b-a506ajbae7] {
        width: 250px;
        min-width: 250px;
        flex-shrink: 0;
        padding: .2rem;
        background: #f8f9fa;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .show-filterpanel-btn[b-a506ajbae7], .filterpanel-overlay[b-a506ajbae7] {
        display: none !important;
    }

    .filter-panel-mobile[b-a506ajbae7] {
        display: none !important;
    }
}

/* Mobile: hide panel, show button/overlay */
@media (max-width: 767.98px) {
    .filter-panel-desktop[b-a506ajbae7] {
        display: none !important;
    }

    .show-filterpanel-btn[b-a506ajbae7] {
        display: block;
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        z-index: 2100;
    }

    .filterpanel-overlay[b-a506ajbae7] {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 2000;
        justify-content: flex-end;
    }

    .filter-panel-mobile[b-a506ajbae7] {
        display: block;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        padding: .2rem;
        background: #f8f9fa;
        box-shadow: -2px 0 8px rgba(0,0,0,0.2);
        overflow-y: auto;
    }
}
/* _content/AdaptiveArtists/Components/Shared/Tags/TagsDisplay.razor.rz.scp.css */
.tags-vertical[b-6dj62wf49d] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tags-vertical .badge[b-6dj62wf49d] {
    margin-bottom: 0.25rem;
}
