/* _content/ResourceMarketplace.Web/Components/Common/ImageDropReorderComponent.razor.rz.scp.css */
/* Fix for Chrome drag animation issues */
[draggable=true]:hover .mud-ripple[b-rudy7don7p]:after,
[draggable=true]:hover .mud-tooltip[b-rudy7don7p] {
    transform: none !important;
}

/* Hide the item being dragged from its original position */
.item-being-dragged[b-rudy7don7p] {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Base dropzone styling */
.image-dropzone[b-rudy7don7p] {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    background-color: white;
}

/* Style when a dropzone can accept a drop */
.can-drop-zone[b-rudy7don7p] {
    border-color: var(--mud-palette-primary) !important;
    background-color: var(--mud-palette-primary-hover) !important;
    transform: scale(1.05);
}

/* Create insertion indicator with ::after pseudo-element */
.can-drop-zone[b-rudy7don7p]::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--mud-palette-primary);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--mud-palette-primary);
    animation: pulse-b-rudy7don7p 1s infinite;
}

/* Pulse animation for insertion indicator */
@keyframes pulse-b-rudy7don7p {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.1);
    }
}

/* Active dragging zone styling */
.dragging-zone-active[b-rudy7don7p] {
    background-color: var(--mud-palette-surface-lighten) !important;
    border-style: solid !important;
}

/* Base image item styles */
.image-item[b-rudy7don7p] {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid transparent;
    cursor: grab;
    transition: all 0.2s ease;
}

.image-item:hover[b-rudy7don7p] {
    transform: scale(1.05);
}

.image-item.featured[b-rudy7don7p] {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 1px var(--mud-palette-primary-lighten);
}

.featured-badge[b-rudy7don7p] {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--mud-palette-primary);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Uploading placeholder styling */
.image-item.uploading-placeholder[b-rudy7don7p] {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

.image-item.uploading-placeholder:hover[b-rudy7don7p] {
    transform: none; /* Disable hover effect for placeholders */
}

.uploading-content[b-rudy7don7p] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Delete zone styling */
.delete-zone[b-rudy7don7p] {
    transition: all 0.3s ease;
}

.delete-zone:hover[b-rudy7don7p] {
    background-color: #ffcdd2 !important;
    border-color: #d32f2f !important;
}
/* _content/ResourceMarketplace.Web/Components/Common/ImageReorderComponent.razor.rz.scp.css */
/* Fix for Chrome drag animation issues */
[draggable=true]:hover .mud-ripple[b-l4at8dah4w]:after,
[draggable=true]:hover .mud-tooltip[b-l4at8dah4w] {
    transform: none !important;
}

/* Smooth drag item rendering */
.mud-drop-item[b-l4at8dah4w] {
    touch-action: none;
    transform: translate3d(0px, 0px, 0px);
}

/* Custom dragging styles */
.dragging-item[b-l4at8dah4w] {
    opacity: 0.8 !important;
    transform: scale(1.05) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    z-index: 9999 !important;
    border: 2px solid var(--mud-palette-primary) !important;
}

.dragging-zone[b-l4at8dah4w] {
    background-color: var(--mud-palette-primary-hover) !important;
    border: 2px dashed var(--mud-palette-primary) !important;
}

/* Base image item styles */
.image-item[b-l4at8dah4w] {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid transparent;
    cursor: grab;
    transition: all 0.2s ease;
    margin: 4px;
}

.image-item:hover[b-l4at8dah4w] {
    transform: scale(1.05);
}

.image-item.featured[b-l4at8dah4w] {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 2px var(--mud-palette-primary-lighten);
}

.featured-badge[b-l4at8dah4w] {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--mud-palette-primary);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}

.image-overlay[b-l4at8dah4w] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-item:hover .image-overlay[b-l4at8dah4w] {
    opacity: 1;
}

.drop-hint[b-l4at8dah4w] {
    display: none;
}

.images-zone:empty .drop-hint[b-l4at8dah4w] {
    display: block;
}
/* _content/ResourceMarketplace.Web/Components/Common/StaticGrid.razor.rz.scp.css */
.virtual-grid[b-ivm1rown5a] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* 
    Find the Virtualize-generated spans, and set them to full grid width.
    This fixes the grid item displacement issue, while still letting the Virtualize detect the spacer elements.
*/
.virtual-grid[b-ivm1rown5a]  > span:first-of-type,
.virtual-grid[b-ivm1rown5a]  > span:last-of-type {
    grid-column: 1/-1;
}
/* _content/ResourceMarketplace.Web/Components/Common/VirtualGrid.razor.rz.scp.css */
.virtual-grid[b-1yqco2fipn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* 
    Find the Virtualize-generated spans, and set them to full grid width.
    This fixes the grid item displacement issue, while still letting the Virtualize detect the spacer elements.
*/
.virtual-grid[b-1yqco2fipn]  > span:first-of-type,
.virtual-grid[b-1yqco2fipn]  > span:last-of-type {
    grid-column: 1/-1;
}
/* _content/ResourceMarketplace.Web/Components/Listings/ListingCard.razor.rz.scp.css */
[b-g93bzpnogo] .listing-card.card-row .listing-card-image {
    width: 25%;
    background-size: cover;
    background-position: center;
}
[b-g93bzpnogo] .listing-card.card-row .listing-card-content {
    width: 60%;
    background-size: cover;
    background-position:center;
}

[b-g93bzpnogo] .listing-card.card-tile .listing-card-image {
    height: 75%;
    background-size: cover;
}

[b-g93bzpnogo] .listing-card.card-tile {
    background-size: cover;
    background-position: center;
    aspect-ratio: 8/9;
    max-width: 400px;
}

[b-g93bzpnogo] .listing-card.card-tile .listing-card-spacer {
    min-height: 75%;
    background-color:transparent;
    transition: min-height 0.5s ease-out;
}

[b-g93bzpnogo] .card-button:hover .listing-card.card-tile .listing-card-spacer {
    min-height: 0;
    transition: min-height 0.5s ease-in;
}

[b-g93bzpnogo] .card-button .listing-card.card-tile .listing-card-title {
    background: rgba(255, 255, 255, 0.5);
}

[b-g93bzpnogo] .card-button:hover .listing-card.card-tile .listing-card-title {
    background: rgba(255, 255, 255, 0.8);
}

[b-g93bzpnogo] .card-button .listing-card.card-tile .listing-card-expand {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s, visibility 1s;
}

[b-g93bzpnogo] .card-button:hover .listing-card.card-tile .listing-card-expand {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
}

[b-g93bzpnogo] .card-button .listing-card.card-tile .listing-card-text {
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

[b-g93bzpnogo] .card-button:hover .listing-card.card-tile .listing-card-text {
    background: rgba(255, 255, 255, 0.8);
    overflow-y: auto;
    scrollbar-width: none;
}

[b-g93bzpnogo] .listing-card.card-tile .listing-card-content {
    background: rgba(255, 255, 255, 0.8);
}

[b-g93bzpnogo] .listing-card.card-tile .listing-card-actions {
    background: rgba(255, 255, 255, 0.8);
}

/* Image tag styles for lazy loading support */
[b-g93bzpnogo] .listing-card-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

[b-g93bzpnogo] .listing-card-image-container {
    position: relative;
    width: 25%;
    height: 100%;
}

[b-g93bzpnogo] .listing-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

[b-g93bzpnogo] .listing-card-image-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
}

/* Ensure content layers are above background images */
[b-g93bzpnogo] .listing-card-spacer,
[b-g93bzpnogo] .listing-card-content {
    position: relative;
    z-index: 1;
}
/* _content/ResourceMarketplace.Web/Components/Listings/ListingOrderInput.razor.rz.scp.css */
[b-t2p5i6tz61] input {
    padding: 10px !important;
}

[b-t2p5i6tz61] .mud-input-label-outlined {
    transform: translate(14px, 10px) scale(1);
}

[b-t2p5i6tz61] .mud-input-outlined-border {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

[b-t2p5i6tz61] .mud-input-control-helper-container {
    display: none !important;
}

[b-t2p5i6tz61] .order-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
/* _content/ResourceMarketplace.Web/Components/Listings/MyListingCard.razor.rz.scp.css */
[b-fk9tr3vvtz] .item-image {
    min-height: 60%;
    background-size: cover;
}
/*::deep .card-button .view-on-focus {
    max-height: 0;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
    background: #d5d5d5;
}

::deep .card-button:hover .view-on-focus {
    max-height: 500px;
    transition: max-height 0.25s ease-in;
}*/
/* _content/ResourceMarketplace.Web/Components/Orders/GroupChat/OrderGroupChatMessageInput.razor.rz.scp.css */
[b-6vkc40q1bm] input {
    padding: 10px !important;
}

/*::deep .mud-input-label-outlined {
    transform: translate(14px, 10px) scale(1);
}*/

[b-6vkc40q1bm] .mud-input-outlined-border {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

[b-6vkc40q1bm] .mud-input-control-helper-container {
    display: none !important;
}

[b-6vkc40q1bm] .order-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

[b-6vkc40q1bm] textarea {
    min-height: 56px;
}
/* _content/ResourceMarketplace.Web/Components/Orders/OrderCard.razor.rz.scp.css */
[b-268lhjbqi8] .listing-card.card-row .listing-card-image {
    width: 25%;
    background-size: cover;
}
[b-268lhjbqi8] .listing-card.card-row .listing-card-content {
    width: 75%;
    background-size: cover;
}

[b-268lhjbqi8] .listing-card.card-tile .listing-card-image {
    height: 60%;
    background-size: cover;
}

[b-268lhjbqi8] .listing-card.card-tile {
    background-size: cover;
    aspect-ratio: 8/9;
    max-width: 400px;
}

[b-268lhjbqi8] .listing-card.card-tile .listing-card-spacer {
    min-height: 60%;
    background-color:transparent;
    transition: min-height 0.5s ease-out;
}

[b-268lhjbqi8] .card-button:hover .listing-card.card-tile .listing-card-spacer {
    min-height: 0;
    transition: min-height 0.5s ease-in;
}

[b-268lhjbqi8] .listing-card.card-tile .listing-card-content {
    background: rgba(255, 255, 255, 0.8);
}

[b-268lhjbqi8] .listing-card.card-tile .listing-card-actions {
    background: rgba(255, 255, 255, 0.8);
}
/* _content/ResourceMarketplace.Web/Components/Pages/Admin/PendingListings.razor.rz.scp.css */
[b-159x178yr7] .item-image {
    height: 60%;
    background-size: cover;
}
/* _content/ResourceMarketplace.Web/Components/Pages/Home.razor.rz.scp.css */
[b-gcdd575iwl] .testimonial {
    position: relative;
    font-style: italic;
    margin-left: 0.5em;
    color: #595C63;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word
}

[b-gcdd575iwl] .testimonial::before {
    content: '\201C';
    color: var(--mud-palette-primary);
    font-size: xx-large;
    position: absolute;
    top: 0;
    left: -0.5em;
}

[b-gcdd575iwl] .testimonial::after {
    content: '\201E';
    color: var(--mud-palette-primary);
    font-size: xx-large;
    position: absolute;
    bottom: 0;
    right: 0;
}

[b-gcdd575iwl] .inner-image {
    border-radius: 4px;
    border: 3px #EEEEEE solid
}

[b-gcdd575iwl] .category-card {
    background-size: cover;
    aspect-ratio: 8/9;
    max-width: 400px;
}

[b-gcdd575iwl] .category-card-image {
    height: 60%;
    visibility: hidden;
}

[b-gcdd575iwl] .category-card-content {
    background: rgba(255, 255, 255, 0.8);
}

[b-gcdd575iwl] .category-card-actions {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 960px) {
    [b-gcdd575iwl] .center-text {
        text-align:center;
    }
}
