/* /Components/Admin/Auctions/ManageAuction.razor.rz.scp.css */
/* Form Sections */
.form-section[b-jlhexb4ccl] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0;
}

.form-section-header[b-jlhexb4ccl] {
    color: #76A12E;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #76A12E;
}

/* Remove Rounded Corners */
[b-jlhexb4ccl] .form-control,
[b-jlhexb4ccl] .form-select,
[b-jlhexb4ccl] .btn,
[b-jlhexb4ccl] .input-group > * {
    border-radius: 0 !important;
}

/* Media Upload Header */
.media-upload-header[b-jlhexb4ccl] {
    background: linear-gradient(135deg, #76A12E 0%, #5d8024 100%);
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 0;
}

.media-upload-header i[b-jlhexb4ccl] {
    font-size: 1.3rem;
}

/* Attachment List */
.attachment-list[b-jlhexb4ccl] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.attachment-list-item[b-jlhexb4ccl] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0;
}

.attachment-list-item i[b-jlhexb4ccl] {
    font-size: 1.5rem;
}

.attachment-list-item a[b-jlhexb4ccl] {
    text-decoration: none;
    color: #495057;
}

.attachment-list-item a:hover[b-jlhexb4ccl] {
    color: #76A12E;
    text-decoration: underline;
}

/* Lot Lists */
.lot-list[b-jlhexb4ccl] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.lot-item[b-jlhexb4ccl] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0;
    transition: all 0.2s ease;
}

.lot-item:hover[b-jlhexb4ccl] {
    background-color: #f8f9fa;
    border-color: #76A12E;
}

.lot-item.draggable[b-jlhexb4ccl] {
    cursor: move;
}

.lot-item.dragging[b-jlhexb4ccl] {
    opacity: 0.5;
    border: 2px dashed #76A12E;
    background-color: #f0f7e6;
}

.lot-thumbnail[b-jlhexb4ccl] {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #dee2e6;
    flex-shrink: 0;
    border-radius: 0;
}

.lot-details[b-jlhexb4ccl] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    line-height: 1.3;
    min-width: 0;
}

.lot-title[b-jlhexb4ccl] {
    font-weight: 600;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lot-category[b-jlhexb4ccl] {
    font-size: 0.875rem;
    color: #6c757d;
}

.lot-price[b-jlhexb4ccl] {
    font-size: 0.875rem;
    color: #495057;
    font-weight: 500;
}

.lot-actions[b-jlhexb4ccl] {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Badge Styling */
[b-jlhexb4ccl] .badge {
    border-radius: 0 !important;
}

/* Scrollbar Styling */
.lot-list[b-jlhexb4ccl]::-webkit-scrollbar {
    width: 8px;
}

.lot-list[b-jlhexb4ccl]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.lot-list[b-jlhexb4ccl]::-webkit-scrollbar-thumb {
    background: #76A12E;
    border-radius: 0;
}

.lot-list[b-jlhexb4ccl]::-webkit-scrollbar-thumb:hover {
    background: #5d8024;
}

/* Attachment Grid */
.attachment-grid[b-jlhexb4ccl] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.attachment-item[b-jlhexb4ccl] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0;
    transition: all 0.2s ease;
}

.attachment-item:hover[b-jlhexb4ccl] {
    border-color: #76A12E;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.attachment-item img[b-jlhexb4ccl] {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border: 1px solid #dee2e6;
    border-radius: 0;
}

.attachment-item .file-icon[b-jlhexb4ccl] {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0;
}

.attachment-item .file-icon i[b-jlhexb4ccl] {
    font-size: 3rem;
    color: #76A12E;
}

.attachment-item .filename[b-jlhexb4ccl] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
    word-break: break-word;
    color: #495057;
}

.attachment-item .delete[b-jlhexb4ccl] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(220, 53, 69, 0.9);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: 0;
    padding: 0;
}

.attachment-item .delete:hover[b-jlhexb4ccl] {
    background: #dc3545;
}

.attachment-item .delete i[b-jlhexb4ccl] {
    font-size: 1.25rem;
}

.attachment-item .upload-overlay[b-jlhexb4ccl] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0;
}

.attachment-item .progress[b-jlhexb4ccl] {
    width: 80%;
    height: 8px;
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 0;
}

.attachment-item .progress-bar[b-jlhexb4ccl] {
    height: 100%;
    background-color: #76A12E;
    transition: width 0.3s ease;
}

.attachment-item .upload-overlay span[b-jlhexb4ccl] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
}
/* /Components/Admin/Lots/ManageLot.razor.rz.scp.css */
/* Remove Bootstrap form control rounding */
[b-29bldsh862] .form-control,
[b-29bldsh862] .form-select,
[b-29bldsh862] .input-group {
    border-radius: 0 !important;
}

/* Form section styling */
.form-section[b-29bldsh862] {
    background: #ffffff;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.form-section-header[b-29bldsh862] {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #76a12e;
}
/* /Components/AdvancedSearch.razor.rz.scp.css */
.applied-filter[b-xi387bx2px] {
  background-color: #76a12e;
  color: white;
  border-radius: 999px;
  padding: 0rem 0.55rem;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.filter-close-icon[b-xi387bx2px] {
  font-size: 0.75rem;
  color: white;
  cursor: pointer;
}

.filter-close-icon:hover[b-xi387bx2px] {
  color: #f1f1f1;
}

/* Optional hover for close button */
.btn-close-white:hover[b-xi387bx2px] {
  filter: brightness(0.85) invert(1);
}

.filter-sidebar[b-xi387bx2px] {
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* Accordion overall */
.filter-sidebar .accordion-item[b-xi387bx2px] {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  padding: 0.5rem;
}

/* Accordion header spacing */
.filter-sidebar .accordion-button[b-xi387bx2px] {
  padding: 0.5rem 0;
  background-color: transparent;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  box-shadow: none;
}

/* Collapse button icon override */
.filter-sidebar .accordion-button[b-xi387bx2px]::after {
  font-family: "bootstrap-icons";
  transform: scale(0.8);
  background-image: none;
  font-weight: normal;
  font-size: 1rem;
  margin-right: 0.5rem;
}

/* When collapsed */
.filter-sidebar .accordion-button.collapsed[b-xi387bx2px]::after {
  content: "\f4fe"; /* bi-plus */
}

/* Show - when expanded */
.filter-sidebar .accordion-button:not(.collapsed)[b-xi387bx2px]::after {
  content: "\f2ea"; /* bi-dash */
}

/* Accordion body */
.filter-sidebar .accordion-body[b-xi387bx2px] {
  padding: 0.25rem 0 0.75rem 0;
  padding-bottom: 0;
}

/* Form checkboxes spacing */
.filter-sidebar .form-check[b-xi387bx2px] {
  padding-left: 0;
}

/* Input adjustments */
.filter-sidebar input.form-control[b-xi387bx2px] {
  border-radius: 4px;
  font-size: 13px;
  padding: 0.4rem 0.6rem;
}

/* Remove bottom border for last section */
.filter-sidebar .accordion-item:last-child[b-xi387bx2px] {
  border-bottom: none;
}

/* Offcanvas Footer Styling */
.offcanvas-footer[b-xi387bx2px] {
  position: sticky;
  bottom: 0;
  background-color: #f8f9fa;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Offcanvas Body to allow scrolling with footer visible */
.offcanvas-body[b-xi387bx2px] {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: calc(100vh - 120px); /* Account for header and footer */
}
/* /Components/Layout/AdminNav.razor.rz.scp.css */
.menu[b-labdo62p8g] {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid #e7e7e7;
}

    .menu[b-labdo62p8g], .menu li[b-labdo62p8g], .menu ol[b-labdo62p8g], .menu ul[b-labdo62p8g] {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .menu > li:not(:first-child) > a[b-labdo62p8g] {
            margin-top: -1px;
            border-top: 1px solid #e7e7e7;
        }

        .menu > li[b-labdo62p8g] {
            float: none;
            margin: 0;
            padding: 0 1rem 0 .9rem;
            position: relative;
        }

            .menu > li > a[b-labdo62p8g] {
                display: flex;
                padding: .8rem .6rem;
                align-items: center;
                color: #444;
                text-decoration: none;
                font-weight: 600;
                font-size: 15px;
            }

            .menu > li.active > a[b-labdo62p8g],
            .menu > li.show > a[b-labdo62p8g],
            .menu > li:hover > a[b-labdo62p8g] {
                color: #76A12E;
            }
/* /Components/Layout/Breadcrumbs.razor.rz.scp.css */
.breadcrumb-item[b-yhft15ga9a] {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: none;
}
/* /Components/Layout/EmptyLayout.razor.rz.scp.css */
body[b-0q2s4q23an] {
    height: 100vh;
}

.page[b-0q2s4q23an] {
    min-height: 100vh;
}

main[b-0q2s4q23an] {
    display: flex;
    flex-flow: column;
    align-items: center;
    min-height: calc(100vh - 67px);
   
    .content
    {
        display: flex;
        flex-flow: column;
        width: 100%;
        height: 100%;
    }
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.about-us-text[b-p0nmc0550x] {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
}

.contact-info[b-p0nmc0550x] {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
}

.footer[b-p0nmc0550x] {
    background-color: #57585A;
    color: #FFFFFF;
    margin-top: 3rem !important;
}

.footer a[b-p0nmc0550x] {
    color: inherit;
    text-decoration: none;
}

.footer ul[b-p0nmc0550x] {
    list-style: none;
    line-height: 1.5;
    padding-left: 0;
}

.footer-bottom[b-p0nmc0550x] {
    color: #FFFFFF;
    padding-bottom: 2.4rem;
    padding-top: 2.4rem;
}

.footer-bottom.top-border[b-p0nmc0550x] {
    color: #FFFFFF;
    border-top: 1px solid #FFFFFF;
    padding-bottom: 2.4rem;
    padding-top: 2.4rem;
}

.footer-logo[b-p0nmc0550x] {
    width: 194px;
    max-width: 100%;
    margin: 0 0 1.5rem;
}

.footer-middle[b-p0nmc0550x] {
    padding-top: 4.4rem;
    padding-bottom: 2.4rem;
}

.footer-title[b-p0nmc0550x] {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.footer-links[b-p0nmc0550x] {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-decoration: none;
}

@media (min-width: 992px) {
    .footer .footer-middle[b-p0nmc0550x],
    .footer .footer-bottom[b-p0nmc0550x] {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}
/* /Components/Layout/Header.razor.rz.scp.css */
.top-header[b-4jlhzbb2kf] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    padding: .75rem 1rem !important;
    height: 100%;
}

.middle-header[b-4jlhzbb2kf] {
    height: 43px;
}

.middle-header-link[b-4jlhzbb2kf] {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    padding: 0 .5rem;
    text-decoration: none;
    color: #4C4C4C;
}

.mobile-menu-toggler[b-4jlhzbb2kf] {
    border: 0;
    background: transparent;
    color: #222529;
    padding: 1rem 0.5rem;
    margin-right: 0.5rem;
    font-size: 20px;
    line-height: 0;
    cursor: pointer;
}

.search-dropdown-menu[b-4jlhzbb2kf] {
    min-width: 325px;
    max-width: 90vw;
    border-radius: 50px;
    right: 0 !important;
    left: auto !important;
    transform: translateX(0) !important;
}

.category-select-mobile[b-4jlhzbb2kf] {
    min-width: 100px !important;
    max-width: 150px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 1;
}

.search-input-mobile[b-4jlhzbb2kf] {
    flex: 1 1 auto;
    min-width: 0;
}

.submit-btn-mobile[b-4jlhzbb2kf] {
    flex-shrink: 0;
}

@media (max-width: 375px) {
    .search-dropdown-menu[b-4jlhzbb2kf] {
        min-width: 280px;
    }
}

.menu[b-4jlhzbb2kf] {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

    .menu[b-4jlhzbb2kf], .menu li[b-4jlhzbb2kf], .menu ol[b-4jlhzbb2kf], .menu ul[b-4jlhzbb2kf] {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .menu > li:not(:first-child) > a[b-4jlhzbb2kf] {
            margin-top: -1px;
        }

        .menu > li[b-4jlhzbb2kf] {
            float: none;
            margin: 0;
            padding: 0 1rem 0 .9rem;
            position: relative;
        }

            .menu > li > a[b-4jlhzbb2kf] {
                display: flex;
                padding: .8rem .6rem;
                align-items: center;
                color: #444;
                text-decoration: none;
                font-weight: 600;
                font-size: 15px;
            }

            .menu > li.active > a[b-4jlhzbb2kf],
            .menu > li.show > a[b-4jlhzbb2kf],
            .menu > li:hover > a[b-4jlhzbb2kf] {
                color: #76A12E;
            }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-ls3yp6avnx] {
    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-ls3yp6avnx] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/Nav.razor.rz.scp.css */
.menu[b-s5cy3jc9kj] {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid #e7e7e7;
}

    .menu[b-s5cy3jc9kj], .menu li[b-s5cy3jc9kj], .menu ol[b-s5cy3jc9kj], .menu ul[b-s5cy3jc9kj] {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .menu > li:not(:first-child) > a[b-s5cy3jc9kj] {
            margin-top: -1px;
            border-top: 1px solid #e7e7e7;
        }

        .menu > li[b-s5cy3jc9kj] {
            float: none;
            margin: 0;
            padding: 0 1rem 0 .9rem;
            position: relative;
        }

            .menu > li > a[b-s5cy3jc9kj] {
                display: flex;
                padding: .8rem .6rem;
                align-items: center;
                color: #444;
                text-decoration: none;
                font-weight: 600;
                font-size: 15px;
            }

            .menu > li.active > a[b-s5cy3jc9kj],
            .menu > li.show > a[b-s5cy3jc9kj],
            .menu > li:hover > a[b-s5cy3jc9kj] {
                color: #76A12E;
            }
/* /Components/NotificationComponent.razor.rz.scp.css */
/* Notification bell wrapper */
@media (min-width: 768px) {
    .notification[b-cl62l6ku4p] {
        position: relative;
    }
}

/* Red unread badge */
.notification-circle[b-cl62l6ku4p] {
    position: absolute;
    top: 8%;
    left: 85%;
    transform: translate(-50%, -30%);
    background-color: red;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Dropdown menu sizing */
.notification-menu[b-cl62l6ku4p] {
    min-width: 380px;
    max-width: 420px;
}

/* Unread items highlighted */
.list-group-item.bg-light[b-cl62l6ku4p] {
    font-weight: 500;
}

/* Limit dropdown body and make it scroll */
.notification-list[b-cl62l6ku4p] {
    max-height: 400px; /* adjust as needed */
    overflow-y: auto;
}

/* Optional: make sure dropdown menu isn’t too narrow/wide */
.notification-menu[b-cl62l6ku4p] {
    min-width: 360px;
    max-width: 420px;
}
/* /Components/Pages/AuctionSearch.razor.rz.scp.css */
.applied-filter[b-om65zcxs2x] {
    background-color: #76a12e;
    color: white;
    border-radius: 999px;
    padding: 0rem 0.55rem;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.filter-close-icon[b-om65zcxs2x] {
    font-size: .75rem;
    color: white;
    cursor: pointer;
}

    .filter-close-icon:hover[b-om65zcxs2x] {
        color: #f1f1f1;
    }

/* Optional hover for close button */
.btn-close-white:hover[b-om65zcxs2x] {
    filter: brightness(0.85) invert(1);
}

.filter-sidebar[b-om65zcxs2x] {
    border: 1px solid #ddd;
    border-radius: 6px;
}

    /* Accordion overall */
    .filter-sidebar .accordion-item[b-om65zcxs2x] {
        border: none;
        border-bottom: 1px solid #e5e5e5;
        padding: .5rem;
    }

    /* Accordion header spacing */
    .filter-sidebar .accordion-button[b-om65zcxs2x] {
        padding: 0.5rem 0;
        background-color: transparent;
        color: #000;
        font-weight: 600;
        font-size: 15px;
        box-shadow: none;
    }

        /* Collapse button icon override */
        .filter-sidebar .accordion-button[b-om65zcxs2x]::after {
            font-family: 'bootstrap-icons';
            transform: scale(0.8);
            background-image: none;
            font-weight: normal;
            font-size: 1rem;
            margin-right: 0.5rem;
        }

        /* When collapsed */
        .filter-sidebar .accordion-button.collapsed[b-om65zcxs2x]::after {
            content: "\f4fe"; /* bi-plus */
        }

        /* Show - when expanded */
        .filter-sidebar .accordion-button:not(.collapsed)[b-om65zcxs2x]::after {
            content: "\f2ea"; /* bi-dash */
        }

    /* Accordion body */
    .filter-sidebar .accordion-body[b-om65zcxs2x] {
        padding: 0.25rem 0 0.75rem 0;
        padding-bottom: 0;
    }

    /* Form checkboxes spacing */
    .filter-sidebar .form-check[b-om65zcxs2x] {
        padding-left: 0;
    }

    /* Input adjustments */
    .filter-sidebar input.form-control[b-om65zcxs2x] {
        border-radius: 4px;
        font-size: 13px;
        padding: 0.4rem 0.6rem;
    }

    /* Remove bottom border for last section */
    .filter-sidebar .accordion-item:last-child[b-om65zcxs2x] {
        border-bottom: none;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
.hero[b-kr099zl1s8] {
    background-image: url('/images/home-banner.jpg');
    background-position: center;
    background-size: cover;
    height: calc(100% -  calc(var(--bs-gutter-x) * 1));
    padding: 5vw;
    margin: calc(var(--bs-gutter-x) * 1) 0 0 0;
}

.hero-content[b-kr099zl1s8] {
    color: white;
}

.hero h1[b-kr099zl1s8] {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: Oswald;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 79%;
}

.hero a[b-kr099zl1s8] {
    font-size: clamp(.5rem, 1.5vw, 1rem);
}




swiper-container[b-kr099zl1s8] {
    height: auto; /* Let swiper calculate based on content */
}

swiper-slide[b-kr099zl1s8] {
    height: auto; /* Let slide grow to content */
    display: flex; /* let children expand */
    align-items: stretch;
}

    swiper-slide > *[b-kr099zl1s8] {
        flex: 1; /* child fills the slide */
    }


/* Make slides and their content fill */
.mySwiper[b-kr099zl1s8] {
    height: auto; /* Let swiper calculate height based on tallest slide */
}

.mySwiper swiper-slide[b-kr099zl1s8] {
    height: auto; /* Let slide grow to content */
    display: flex; /* lets the child stretch */
}

    .mySwiper .slide-fill[b-kr099zl1s8] {
        display: flex;
        width: 100%;
        height: 100%;
    }

        .mySwiper .slide-fill > *[b-kr099zl1s8] {
            flex: 1 1 auto;
            min-width: 0; /* avoids overflow with flex children */
        }

    /* If LotCard uses Bootstrap grid/float, neutralize it inside slides */
    .mySwiper swiper-slide [class^="col-"][b-kr099zl1s8],
    .mySwiper swiper-slide [class*=" col-"][b-kr099zl1s8] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mySwiper swiper-slide .float-start[b-kr099zl1s8],
    .mySwiper swiper-slide .float-end[b-kr099zl1s8] {
        float: none !important;
    }
/* /Components/Pages/PaymentPage.razor.rz.scp.css */
.drop-area[b-9xj5cung32] {
    border: 2px solid #D9D9D9;
    padding: 10px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    min-height: 150px;
}

.drop-area:hover[b-9xj5cung32] {
    background-color: antiquewhite;
    color: #333;
}

.drag-over[b-9xj5cung32] {
    background-color: #d9d9d9cd;
}
/* /Components/Shared/AttachmentManager.razor.rz.scp.css */
/* Attachment Manager Styling */

.media-upload-header[b-4s7rxsd71p] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
    font-size: 1.1rem;
}

.media-upload-header .media-icon[b-4s7rxsd71p] {
    width: 75%;
    height: 75%;
    filter: invert(59%) sepia(15%) saturate(1637%) hue-rotate(41deg) brightness(91%) contrast(85%);
}

.attachment-grid[b-4s7rxsd71p] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

.attachment-item[b-4s7rxsd71p] {
    position: relative;
    aspect-ratio: 1;
    border: 2px solid #dee2e6;
    overflow: hidden;
    cursor: grab;
    transition: all 0.2s ease-in-out;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-drag: element;
}

.attachment-item[draggable="false"][b-4s7rxsd71p] {
    cursor: default;
}

.attachment-item[draggable="true"]:hover[b-4s7rxsd71p] {
    transform: scale(1.03);
    border-color: #76a12e;
    box-shadow: 0 2px 8px rgba(118, 161, 46, 0.3);
}

.attachment-item[draggable="true"]:active[b-4s7rxsd71p] {
    cursor: grabbing;
}

.attachment-item.dragging[b-4s7rxsd71p] {
    opacity: 0.4;
    transform: scale(0.95);
    cursor: grabbing;
}

.attachment-item.drag-over[b-4s7rxsd71p] {
    border-color: #76a12e;
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(118, 161, 46, 0.2);
    transform: scale(1.05);
}

.attachment-item .attachment-preview[b-4s7rxsd71p] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.attachment-item .attachment-icon[b-4s7rxsd71p] {
    font-size: 2.5rem;
    color: #6c757d;
    user-select: none;
    pointer-events: none;
}

.attachment-item .attachment-name[b-4s7rxsd71p] {
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
}

.attachment-item .delete[b-4s7rxsd71p] {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #dc3545;
    color: white;
    font-size: 1rem;
    padding: 2px 6px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.attachment-item .delete:hover[b-4s7rxsd71p] {
    background-color: #c82333;
}

.attachment-item .upload-overlay[b-4s7rxsd71p] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.attachment-item .upload-overlay .progress[b-4s7rxsd71p] {
    width: 100%;
    height: 10px;
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.attachment-item .upload-overlay .progress .progress-bar[b-4s7rxsd71p] {
    background-color: #76a12e;
    border-radius: 4px;
}

.attachment-item .upload-overlay .upload-percentage[b-4s7rxsd71p] {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}
/* /Components/Shared/DataTable/DataTable.razor.rz.scp.css */
th[b-jtzjl70k4y] {
    font-weight: 400;
}

.table-sort-button[b-jtzjl70k4y] {
    border: none;
    background: transparent;
}

.table-image[b-jtzjl70k4y] {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}
/* /Components/Shared/MediaUploadManager.razor.rz.scp.css */
/* Media Upload Manager Styling */

.media-upload-header[b-85xk4pf83r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
    font-size: 1.1rem;
}

.media-upload-header>i[b-85xk4pf83r] {
    color: #76a12e;
    font-size: 1.25rem;
}

.thumbnail-grid[b-85xk4pf83r] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

.thumb[b-85xk4pf83r] {
    position: relative;
    aspect-ratio: 1;
    border: 2px solid #dee2e6;
    overflow: hidden;
    cursor: grab;
    transition: all 0.2s ease-in-out;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb[draggable="true"]:hover[b-85xk4pf83r] {
    transform: scale(1.03);
    border-color: #76a12e;
    box-shadow: 0 2px 8px rgba(118, 161, 46, 0.3);
}

.thumb[draggable="true"]:active[b-85xk4pf83r] {
    cursor: grabbing;
}

.thumb.dragging[b-85xk4pf83r] {
    opacity: 0.4;
    transform: scale(0.95);
    cursor: grabbing;
}

.thumb.drag-over[b-85xk4pf83r] {
    border-color: #76a12e;
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(118, 161, 46, 0.2);
    transform: scale(1.05);
}

.thumb img[b-85xk4pf83r],
.thumb video[b-85xk4pf83r] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Style SVG placeholder */
.thumb img[src*="film.svg"][b-85xk4pf83r] {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.thumb .order[b-85xk4pf83r] {
    display: none;
}

.thumb .delete[b-85xk4pf83r] {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #dc3545;
    color: white;
    font-size: 1rem;
    padding: 2px 6px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.thumb .delete:hover[b-85xk4pf83r] {
    background-color: #c82333;
}

.thumb .type-badge[b-85xk4pf83r] {
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 3px;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 8px);
    width: fit-content;
}

.thumb .upload-overlay[b-85xk4pf83r] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.thumb .upload-overlay .progress[b-85xk4pf83r] {
    width: 100%;
    height: 10px;
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.thumb .upload-overlay .progress .progress-bar[b-85xk4pf83r] {
    background-color: #76a12e;
    border-radius: 4px;
}

.thumb .upload-overlay .upload-percentage[b-85xk4pf83r] {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-overlay[b-85xk4pf83r] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    pointer-events: none;
}

.status-overlay.failed[b-85xk4pf83r] {
    background: rgba(220, 53, 69, 0.7);
}

.status-overlay.uploading[b-85xk4pf83r] {
    background: rgba(0, 0, 0, 0.8);
    gap: 0.5rem;
}

.upload-percentage-text[b-85xk4pf83r] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: -0.25rem;
}

.upload-progress-bar[b-85xk4pf83r] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin-top: 0.5rem;
}

.upload-progress-fill[b-85xk4pf83r] {
    height: 100%;
    background: #76a12e;
    transition: width 0.3s ease;
}
/* /Components/Shared/PhoneInput.razor.rz.scp.css */
.phone-country-select[b-9oiwir9yv2] {
    width: auto;
    min-width: 3.5rem;
}

@media (min-width: 576px) {
    .phone-country-select[b-9oiwir9yv2] {
        min-width: 10rem;
    }
}
