/* /Components/CarCard.razor.rz.scp.css */
.car-card[b-h0g3atq8cf] {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.car-card:hover[b-h0g3atq8cf] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-container[b-h0g3atq8cf] {
    position: relative;
    height: 200px;
    background: #f5f5f5;
    overflow: hidden;
}

.image-container img[b-h0g3atq8cf] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder[b-h0g3atq8cf] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
}

.no-image-icon[b-h0g3atq8cf] {
    opacity: 0.5;
}

.sold-label[b-h0g3atq8cf] {
    position: absolute;
    top: 15px;
    left: -35px;
    width: 130px;
    background-color: #FFF9C4; /* Pale yellow */
    color: #5D4037; /* Dark brown */
    text-align: center;
    padding: 4px 0;
    transform: rotate(-45deg);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    pointer-events: none;
}

.favorite-btn[b-h0g3atq8cf] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.favorite-btn:hover[b-h0g3atq8cf] {
    background: rgba(0, 0, 0, 0.7);
}

.favorite-btn.is-favorite[b-h0g3atq8cf] {
    color: white;
}

.favorite-btn.is-favorite:hover[b-h0g3atq8cf] {
    color: white;
}

.content[b-h0g3atq8cf] {
    padding: 16px;
}

.title-row[b-h0g3atq8cf] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.title-row h3[b-h0g3atq8cf] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.year[b-h0g3atq8cf] {
    font-size: 0.9rem;
    color: #666;
}

.price-location-row[b-h0g3atq8cf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price[b-h0g3atq8cf] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2e7d32;
}

.location[b-h0g3atq8cf] {
    font-size: 0.85rem;
    color: #777;
    text-align: right;
}
/* /Components/CarThumbnails.razor.rz.scp.css */
.thumbnails-section[b-0kllkow8hm] {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #fafafa;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.thumbnail[b-0kllkow8hm] {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.thumbnail img[b-0kllkow8hm] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover[b-0kllkow8hm] {
    border-color: #bbb;
}

.thumbnail.active[b-0kllkow8hm] {
    border-color: #2196f3;
}

.thumbnail-spinner[b-0kllkow8hm] {
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2196f3;
    border-radius: 50%;
    animation: spin-b-0kllkow8hm 1s linear infinite;
}

@keyframes spin-b-0kllkow8hm {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* /Components/ConfirmationDialog.razor.rz.scp.css */
.dialog-backdrop[b-r8lf9kkcfl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dialog-content[b-r8lf9kkcfl] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
}

.dialog-header[b-r8lf9kkcfl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dialog-header h3[b-r8lf9kkcfl] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.dialog-body[b-r8lf9kkcfl] {
    padding: 20px;
}

.dialog-body p[b-r8lf9kkcfl] {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.dialog-footer[b-r8lf9kkcfl] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px;
}

.btn[b-r8lf9kkcfl] {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary[b-r8lf9kkcfl] {
    background: #007bff;
    color: white;
}

.btn-primary:hover[b-r8lf9kkcfl] {
    background: #0056b3;
}

.btn-secondary[b-r8lf9kkcfl] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover[b-r8lf9kkcfl] {
    background: #545b62;
}
/* /Components/ConfirmDialog.razor.rz.scp.css */
.dialog-backdrop[b-xjwy8gezuv] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dialog-content[b-xjwy8gezuv] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
}

.dialog-header[b-xjwy8gezuv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dialog-header h3[b-xjwy8gezuv] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.dialog-body[b-xjwy8gezuv] {
    padding: 20px;
}

.dialog-body p[b-xjwy8gezuv] {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.dialog-footer[b-xjwy8gezuv] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px;
}

.dialog-footer .btn[b-xjwy8gezuv] {
    font-size: 0.875rem;
}

.btn-outline-secondary[b-xjwy8gezuv] {
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.btn-outline-secondary:hover[b-xjwy8gezuv] {
    background-color: #6c757d;
    color: white;
}

.btn-outline-primary[b-xjwy8gezuv] {
    background-color: transparent;
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

.btn-outline-primary:hover[b-xjwy8gezuv] {
    background-color: #0d6efd;
    color: white;
}

.btn-outline-danger[b-xjwy8gezuv] {
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.btn-outline-danger:hover[b-xjwy8gezuv] {
    background-color: #dc3545;
    color: white;
}

/* /Components/CookieBanner.razor.rz.scp.css */
.cookie-banner[b-p5ox8uztb3] {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 9999;
    padding: 16px 24px;
    animation: slideUp-b-p5ox8uztb3 0.5s ease-out;
}

.cookie-container[b-p5ox8uztb3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text p[b-p5ox8uztb3] {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.cookie-text a[b-p5ox8uztb3] {
    color: #2196f3;
    font-weight: 600;
    text-decoration: underline !important;
}

.btn-accept[b-p5ox8uztb3] {
    background-color: #2196f3 !important;
    color: white !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-accept:hover[b-p5ox8uztb3] {
    background-color: #1976d2 !important;
}

@keyframes slideUp-b-p5ox8uztb3 {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-banner[b-p5ox8uztb3] {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    
    .cookie-container[b-p5ox8uztb3] {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .btn-accept[b-p5ox8uztb3] {
        width: 100%;
    }
}
/* /Components/Filters.razor.rz.scp.css */
.filters-container[b-hu8l3lcipj] {
    padding-left: 15px;
    padding-right: 15px;
    background: white;
    border-radius: 4px;
}

.filter-header h3[b-hu8l3lcipj] {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.filter-group[b-hu8l3lcipj] {
    margin-bottom: 20px;
}

.filter-header[b-hu8l3lcipj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.toggle-arrow[b-hu8l3lcipj] {
    cursor: pointer;
    display: inline-block;
    width: 16px;
    height: 16px;
}

.filter-group label[b-hu8l3lcipj] {
    display: block;
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
}

.form-select[b-hu8l3lcipj],
input[type="number"][b-hu8l3lcipj] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}

.range-inputs[b-hu8l3lcipj] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.range-inputs input[b-hu8l3lcipj] {
    width: 100%;
}

.radio-list[b-hu8l3lcipj] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px;
}

.radio-item label[b-hu8l3lcipj] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-weight: normal;
}

/* Maker/Model list styles */
.maker-model-list[b-hu8l3lcipj] {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px;
}

.checkbox-item[b-hu8l3lcipj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
}

.checkbox-item label[b-hu8l3lcipj] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    cursor: pointer;
    flex: 1;
    font-weight: normal;
}

.checkbox-item input[type="checkbox"][b-hu8l3lcipj] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    margin: 0;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"]:checked[b-hu8l3lcipj] {
    accent-color: #007bff;
}

/* Maker item - full width */
.maker-item[b-hu8l3lcipj] {
    padding: 10px 8px;
}

.maker-item label[b-hu8l3lcipj] {
    font-weight: 500;
}

/* Maker toggle arrow for expanding/collapsing models */
.maker-toggle[b-hu8l3lcipj] {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

/* Models inline container - indented */
.models-inline[b-hu8l3lcipj] {
    margin-left: 15px;
}

/* Model item - indented, lighter style */
.model-item[b-hu8l3lcipj] {
    padding: 10px 8px 10px 15px;
    border-bottom: none;
}

.model-item:last-child[b-hu8l3lcipj] {
    margin-bottom: 8px;
}

.model-item label[b-hu8l3lcipj] {
    font-weight: normal;
    font-size: 0.95rem;
    color: #666;
}

.model-item input[type="checkbox"][b-hu8l3lcipj] {
    transform: scale(0.9);
}

.show-more-link[b-hu8l3lcipj] {
    margin-top: 8px;
}

.show-more-link a[b-hu8l3lcipj] {
    color: #007bff;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}

.show-more-link a:hover[b-hu8l3lcipj] {
    text-decoration: none;
}

.search-link[b-hu8l3lcipj] {
    margin-top: 8px;
    text-align: right;
}

.search-link a[b-hu8l3lcipj] {
    color: #007bff;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}

.search-link a:hover[b-hu8l3lcipj] {
    text-decoration: none;
}
/* /Components/Footer.razor.rz.scp.css */
.site-footer[b-1339qus22l] {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container[b-1339qus22l] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content[b-1339qus22l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section[b-1339qus22l] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h4[b-1339qus22l] {
    margin: 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2196f3;
}

.footer-section p[b-1339qus22l] {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links[b-1339qus22l] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li[b-1339qus22l] {
    margin: 0;
}

.footer-links a[b-1339qus22l] {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover[b-1339qus22l] {
    color: #2196f3;
}

.footer-bottom[b-1339qus22l] {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 0.85rem;
}

.footer-bottom p[b-1339qus22l] {
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .site-footer[b-1339qus22l] {
        margin-top: 3rem;
        padding: 2rem 0 1rem;
    }

    .footer-content[b-1339qus22l] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .footer-section h4[b-1339qus22l] {
        font-size: 0.95rem;
    }

    .footer-section p[b-1339qus22l],
    .footer-links a[b-1339qus22l] {
        font-size: 0.85rem;
    }
}
/* /Components/ImageModal.razor.rz.scp.css */
/* Photo Modal */
.photo-modal-overlay[b-f8g499uybe] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
    animation: fadeIn-b-f8g499uybe 0.2s ease-out;
}

.photo-modal-content[b-f8g499uybe] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    animation: zoomIn-b-f8g499uybe 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: fit-content;
}

.photo-modal-close[b-f8g499uybe] {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 1010;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.photo-modal-close:hover[b-f8g499uybe] {
    background: #e53e3e;
    transform: rotate(90deg);
}

.photo-modal-img[b-f8g499uybe] {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.no-image-placeholder-modal[b-f8g499uybe] {
    width: 600px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    border-radius: 8px;
}

.no-image-placeholder-modal p[b-f8g499uybe] {
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 500;
}

.no-image-icon[b-f8g499uybe] {
    opacity: 0.5;
}

.nav-btn[b-f8g499uybe] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1010;
}

.nav-btn:hover[b-f8g499uybe] {
    background: rgba(0, 0, 0, 0.7);
}

.nav-btn-prev[b-f8g499uybe] {
    left: 16px;
}

.nav-btn-next[b-f8g499uybe] {
    right: 16px;
}

.modal-image-counter[b-f8g499uybe] {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 1010;
}

@keyframes fadeIn-b-f8g499uybe {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn-b-f8g499uybe {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* /Components/InfoDialog.razor.rz.scp.css */
.dialog-backdrop[b-jhnldn66xr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dialog-content[b-jhnldn66xr] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
}

.dialog-header[b-jhnldn66xr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dialog-header h3[b-jhnldn66xr] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.dialog-body[b-jhnldn66xr] {
    padding: 20px;
}

.dialog-body p[b-jhnldn66xr] {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.dialog-footer[b-jhnldn66xr] {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.btn-primary[b-jhnldn66xr] {
    background-color: #007bff !important;
    color: white !important;
    border: 1px solid #007bff !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

.btn-primary:hover[b-jhnldn66xr] {
    background-color: #0056b3 !important;
}
/* /Components/LoadingDialog.razor.rz.scp.css */
.loading-dialog-backdrop[b-17sfbhr69v] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.loading-dialog-content[b-17sfbhr69v] {
    background: white;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    width: 90%;
}

.spinner[b-17sfbhr69v] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin-b-17sfbhr69v 1s linear infinite;
}

.success-icon[b-17sfbhr69v] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #e8f5e9;
    border-radius: 50%;
    margin-bottom: 10px;
}

@keyframes spin-b-17sfbhr69v {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-message[b-17sfbhr69v] {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.progress-container[b-17sfbhr69v] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.progress-bar[b-17sfbhr69v] {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill[b-17sfbhr69v] {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text[b-17sfbhr69v] {
    font-size: 12px;
    font-weight: 600;
    color: #007bff;
}
/* /Components/LoginDialog.razor.rz.scp.css */
.dialog-backdrop[b-55cad9i6d8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dialog-content[b-55cad9i6d8] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
}

.dialog-header[b-55cad9i6d8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dialog-header h3[b-55cad9i6d8] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.dialog-body[b-55cad9i6d8] {
    padding: 20px;
}

.dialog-body p[b-55cad9i6d8] {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.dialog-footer[b-55cad9i6d8] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px;
}

.btn[b-55cad9i6d8] {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary[b-55cad9i6d8] {
    background: #007bff;
    color: white;
}

.btn-primary:hover[b-55cad9i6d8] {
    background: #0056b3;
}

.btn-secondary[b-55cad9i6d8] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover[b-55cad9i6d8] {
    background: #545b62;
}
/* /Components/NotFoundView.razor.rz.scp.css */
.va-notfound-badge[b-josypwpibk] {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 0.04em;
    color: #0b2a5b;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.22), rgba(111, 66, 193, 0.14));
    border: 1px solid rgba(13, 110, 253, 0.25);
}

.va-notfound-path[b-josypwpibk] {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.va-notfound-mono[b-josypwpibk] {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    word-break: break-all;
}
/* /Components/ReportCarDialog.razor.rz.scp.css */
.report-categories[b-7na96pxsid] {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-option[b-7na96pxsid] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-option input[type="radio"][b-7na96pxsid] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

.category-option label[b-7na96pxsid] {
    cursor: pointer;
    font-size: 15px;
    color: #333;
    margin: 0;
}

.report-fields[b-7na96pxsid] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-group[b-7na96pxsid] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.form-group label[b-7na96pxsid] {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.form-control[b-7na96pxsid] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus[b-7na96pxsid] {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

/* Validation Styling - standard with AddCarPostPage */
[b-7na96pxsid] .validation-message {
    color: #dc3545;
    font-size: 0.8125rem;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

/* CAPTCHA Styling */
.captcha-group[b-7na96pxsid] {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.captcha-loading[b-7na96pxsid] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    color: #666;
    font-size: 14px;
}

.captcha-image-container[b-7na96pxsid] {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.captcha-image[b-7na96pxsid] {
    width: 200px;
    height: 70px;
    border: 1px solid #ddd;
    border-radius: 4px;
    object-fit: contain;
    background: #f9f9f9;
}

.btn-refresh[b-7na96pxsid] {
    padding: 8px 12px;
    font-size: 18px;
    height: 44px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-refresh:hover[b-7na96pxsid] {
    background: #f5f5f5;
    border-color: #999;
}

.alert[b-7na96pxsid] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.alert-danger[b-7na96pxsid] {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.validation-errors-list[b-7na96pxsid] {
    background-color: #fff5f5;
    color: #c53030;
    padding: 10px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #f56565;
    font-size: 0.875rem;
}

.validation-errors-list ul[b-7na96pxsid] {
    margin: 0;
    padding-left: 20px;
}

.validation-errors-list li[b-7na96pxsid] {
    margin-bottom: 4px;
}

.spinner[b-7na96pxsid] {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin-b-7na96pxsid 0.8s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin-b-7na96pxsid {
    to {
        transform: rotate(360deg);
    }
}

/* Modal Layout */
.dialog-backdrop[b-7na96pxsid] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.dialog-content[b-7na96pxsid] {
    background-color: white;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: dialogSlideUp-b-7na96pxsid 0.3s ease-out;
}

@keyframes dialogSlideUp-b-7na96pxsid {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dialog-header[b-7na96pxsid] {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialog-header h3[b-7na96pxsid] {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.dialog-body[b-7na96pxsid] {
    padding: 24px;
    overflow-y: auto;
}

.dialog-body p[b-7na96pxsid] {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 15px;
}

.dialog-footer[b-7na96pxsid] {
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
/* /Components/SearchableSelect.razor.rz.scp.css */
.searchable-select[b-wa8dhqp7f8] {
    position: relative;
    width: 100%;
}

.select-input-wrapper[b-wa8dhqp7f8] {
    position: relative;
}

.select-input[b-wa8dhqp7f8] {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
    background: white;
    cursor: text;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.select-input:valid[b-wa8dhqp7f8],
.select-input:focus:valid[b-wa8dhqp7f8] {
    border-color: #ddd !important;
    box-shadow: none !important;
}

.select-input:focus[b-wa8dhqp7f8] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select-input:disabled[b-wa8dhqp7f8] {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.select-input.invalid[b-wa8dhqp7f8] {
    outline: 1px solid #dc3545 !important;
}

.select-input.invalid:focus[b-wa8dhqp7f8] {
    outline: 1px solid #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.select-arrow[b-wa8dhqp7f8] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 10px;
    transition: transform 0.2s;
    cursor: pointer;
    padding: 4px;
    user-select: none;
}

.searchable-select.open .select-arrow[b-wa8dhqp7f8] {
    transform: translateY(-50%) rotate(180deg);
}

.select-dropdown[b-wa8dhqp7f8] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.select-options[b-wa8dhqp7f8] {
    padding: 4px 0;
}

.select-option[b-wa8dhqp7f8] {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.15s;
    font-size: 1rem;
    color: #333;
}

.select-option:hover[b-wa8dhqp7f8] {
    background-color: #f5f5f5;
}

.select-option.selected[b-wa8dhqp7f8] {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 500;
}

.select-option.selected:hover[b-wa8dhqp7f8] {
    background-color: #bbdefb;
}

.select-no-results[b-wa8dhqp7f8] {
    padding: 16px 15px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Scrollbar styling for dropdown */
.select-dropdown[b-wa8dhqp7f8]::-webkit-scrollbar {
    width: 8px;
}

.select-dropdown[b-wa8dhqp7f8]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.select-dropdown[b-wa8dhqp7f8]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.select-dropdown[b-wa8dhqp7f8]::-webkit-scrollbar-thumb:hover {
    background: #999;
}
/* /Components/UserCarCard.razor.rz.scp.css */
.user-car-card[b-l4mdju7xs5] {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    margin-bottom: 12px;
    min-height: 150px;
    height: auto;
}

.user-car-card:hover[b-l4mdju7xs5] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.image-container[b-l4mdju7xs5] {
    width: 150px;
    min-width: 150px;
    height: 100%;
    background: #f5f5f5;
    overflow: hidden;
    padding: 8px;
}

.image-container img[b-l4mdju7xs5] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.no-image-placeholder[b-l4mdju7xs5] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    border-radius: 4px;
}

.no-image-icon[b-l4mdju7xs5] {
    opacity: 0.5;
}

.content[b-l4mdju7xs5] {
    flex: 1;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 
        "details price"
        "actions actions";
    gap: 12px 15px;
    min-width: 0;
}

.details[b-l4mdju7xs5] {
    grid-area: details;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.title[b-l4mdju7xs5] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.year[b-l4mdju7xs5] {
    font-size: 0.9rem;
    color: #666;
}

.dates-info[b-l4mdju7xs5] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 2px;
}

.date-item[b-l4mdju7xs5] {
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
    display: flex;
    gap: 4px;
}

.date-label[b-l4mdju7xs5] {
    opacity: 0.8;
}

.price-container[b-l4mdju7xs5] {
    grid-area: price;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: fit-content;
}

.price[b-l4mdju7xs5] {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.status-wrapper[b-l4mdju7xs5] {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 4px;
    flex-wrap: wrap;
}

.price-section[b-l4mdju7xs5] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.status-badge[b-l4mdju7xs5] {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.status-active[b-l4mdju7xs5] {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.status-inactive[b-l4mdju7xs5] {
    background-color: #f5f5f5;
    color: #757575;
    border: 1px solid #e0e0e0;
}

.status-sold[b-l4mdju7xs5] {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.status-blocked[b-l4mdju7xs5] {
    background-color: #fff9c4;
    color: #f57f17;
    border: 1px solid #fff176;
}

.text-expiring-soon[b-l4mdju7xs5] {
    color: #d97706; /* Darker yellow/orange */
    font-weight: 500;
}

.actions[b-l4mdju7xs5] {
    grid-area: actions;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.actions .btn[b-l4mdju7xs5] {
    line-height: 1;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 4px;
}

@media (max-width: 1400px) {
    .content[b-l4mdju7xs5] {
        padding: 10px 12px;
        gap: 8px 10px;
    }

    .title[b-l4mdju7xs5] {
        font-size: 1rem !important;
    }
    
    .price[b-l4mdju7xs5] {
        font-size: 1rem !important;
    }

    .image-container[b-l4mdju7xs5] {
        width: 130px;
        min-width: 130px;
    }
    
    .actions .btn[b-l4mdju7xs5] {
        padding: 4px 8px !important;
        font-size: 0.8rem !important;
    }

    .details[b-l4mdju7xs5] {
        margin-bottom: 8px;
    }
}

@media (max-width: 1200px) {
    .content[b-l4mdju7xs5] {
        padding: 8px 10px;
        gap: 6px 8px;
    }

    .title[b-l4mdju7xs5] {
        font-size: 0.9rem !important;
    }
    
    .price[b-l4mdju7xs5] {
        font-size: 0.9rem !important;
    }
    
    .image-container[b-l4mdju7xs5] {
        width: 110px;
        min-width: 110px;
    }

    .actions .btn[b-l4mdju7xs5] {
        padding: 3px 6px !important;
        font-size: 0.75rem !important;
    }
    
    .status-badge[b-l4mdju7xs5] {
        font-size: 0.65rem;
        padding: 1px 8px;
    }

    .year[b-l4mdju7xs5], .date-item[b-l4mdju7xs5] {
        font-size: 0.75rem;
    }

    .actions[b-l4mdju7xs5] {
        gap: 4px;
    }
}

@media (max-width: 991px) {
    .content[b-l4mdju7xs5] {
        padding: 6px 8px;
        gap: 4px 6px;
    }

    .title[b-l4mdju7xs5] {
        font-size: 0.85rem !important;
    }
    
    .price[b-l4mdju7xs5] {
        font-size: 0.8rem !important;
    }

    .image-container[b-l4mdju7xs5] {
        width: 100px;
        min-width: 100px;
    }

    .actions[b-l4mdju7xs5] {
        gap: 3px;
    }

    .actions .btn[b-l4mdju7xs5] {
        font-size: 0.7rem !important;
        padding: 2px 4px !important;
    }

    .status-badge[b-l4mdju7xs5] {
        font-size: 0.6rem;
        padding: 1px 6px;
    }

    .year[b-l4mdju7xs5], .date-item[b-l4mdju7xs5] {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .user-car-card[b-l4mdju7xs5] {
        flex-direction: column;
        min-height: auto;
    }

    .image-container[b-l4mdju7xs5] {
        width: 100%;
        height: 200px;
    }

    .content[b-l4mdju7xs5] {
        width: 100%;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.top-header[b-jwlnmvl7ci] {
    background-color: #f8fafc;
    color: #0f172a;
    padding: 1rem 2rem;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo[b-jwlnmvl7ci] {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: inherit;
    flex-shrink: 0;
}

.auth-links[b-jwlnmvl7ci] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.auth-link[b-jwlnmvl7ci] {
    color: #0f172a;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-weight: 500;
}

.auth-link:hover[b-jwlnmvl7ci] {
    color: #1976d2;
}

body[b-jwlnmvl7ci] {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

/* Bootstrap Grid Layout Standardization */
/* All pages use Bootstrap container-fluid + row system for consistent responsive behavior */
.main-layout[b-jwlnmvl7ci] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-layout main[b-jwlnmvl7ci] {
    flex: 1;
}

/* Standard page content padding and spacing */
.container-fluid[b-jwlnmvl7ci] {
    padding-left: 0;
    padding-right: 0;
}

.row[b-jwlnmvl7ci] {
    margin-left: 0;
    margin-right: 0;
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Header styles */
.top-header[b-6q5y7qqw3a] {
    background-color: #f8fafc;
    color: #0f172a;
    padding: 1rem 0;
    /* Changed to 0 horizontal padding as container handles it */
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo[b-6q5y7qqw3a] {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: inherit;
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
}

.logo img[b-6q5y7qqw3a] {
    vertical-align: bottom;
}

.logo-text[b-6q5y7qqw3a] {
    margin-left: 0.5rem;
    font-size: 1rem;
    line-height: 1;
}

.nav-links[b-6q5y7qqw3a] {
    display: flex;
    gap: 0.2rem;
    align-items: flex-end;
    flex: 1;
    margin-left: 1rem;
}

.nav-links[b-6q5y7qqw3a]  .nav-link {
    color: #0f172a;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-links[b-6q5y7qqw3a]  .nav-link:hover {
    color: #1976d2;
}

.nav-links[b-6q5y7qqw3a]  .nav-link.active {
    color: #1976d2;
    font-weight: 600;
}

.auth-links[b-6q5y7qqw3a] {
    display: flex;
    gap: 0.2rem;
    align-items: flex-end;
}

.auth-link[b-6q5y7qqw3a] {
    color: #0f172a;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
}

.auth-link:hover[b-6q5y7qqw3a] {
    color: #1976d2;
}

/* Legacy navbar styles */
.navbar-toggler[b-6q5y7qqw3a] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: #1f2933;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(0, 0, 0, 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%2831, 41, 51, 0.65%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem #f7f9fb;
}

.navbar-toggler:checked[b-6q5y7qqw3a] {
    background-color: #e8edf5;
}

.top-row[b-6q5y7qqw3a] {
    min-height: 3.5rem;
    background-color: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand[b-6q5y7qqw3a] {
    font-size: 1.1rem;
}

.auth-links[b-6q5y7qqw3a] {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.auth-links .nav-link[b-6q5y7qqw3a] {
    color: #1f2937;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.auth-links .nav-link:hover[b-6q5y7qqw3a] {
    color: #1976d2;
}

.bi[b-6q5y7qqw3a] {
    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-6q5y7qqw3a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231f2937' 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-6q5y7qqw3a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231f2937' 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-6q5y7qqw3a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231f2937' 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");
}

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

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

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

.nav-item[b-6q5y7qqw3a]  .nav-link {
    color: #1f2937;
    background: none;
    border: none;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    width: 100%;
}

.nav-item[b-6q5y7qqw3a]  a.active {
    background-color: #dde7ff;
    color: #0f172a;
}

.nav-item[b-6q5y7qqw3a]  .nav-link:hover {
    color: #1976d2;
}

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

.navbar-toggler:checked~.nav-scrollable[b-6q5y7qqw3a] {
    display: block;
}

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

    .nav-scrollable[b-6q5y7qqw3a] {
        display: block;
    }
}
/* /Pages/Account.razor.rz.scp.css */
.page-wrapper[b-q781n7l51y] {
    padding: 2rem;
}

.account-header[b-q781n7l51y] {
    margin-bottom: 2rem;
}

.account-content-wrapper[b-q781n7l51y] {
    display: flex;
    gap: 15px;
    padding: 16px;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    min-height: 500px;
}

.sidebar-col[b-q781n7l51y] {
    width: 200px;
    flex-shrink: 0;
}

.account-nav[b-q781n7l51y] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-nav-item[b-q781n7l51y] {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    text-decoration: none;
    color: #555;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.account-nav-item:hover[b-q781n7l51y] {
    background-color: #f8f9fa;
    color: #2196f3;
}

.account-nav-item.active[b-q781n7l51y] {
    background-color: #f0f7ff;
    color: #1976d2;
}

.account-nav-item.active[b-q781n7l51y]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #1976d2;
    border-radius: 0 2px 2px 0;
}

.account-nav-item .icon[b-q781n7l51y] {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.account-nav-item .icon svg[b-q781n7l51y] {
    width: 100%;
    height: 100%;
}

.content-area[b-q781n7l51y] {
    flex-grow: 1;
    padding-left: 15px;
    border-left: 1px solid #eee;
    min-width: 0;
}

.content-area h2[b-q781n7l51y] {
    margin: 0;
    font-weight: 500;
}

.header[b-q781n7l51y] {
    margin-bottom: 2rem;
}

.account-header[b-q781n7l51y] {
    margin-bottom: 2rem;
}

.account-header h2[b-q781n7l51y] {
    margin: 0;
    color: #333;
}

.form-label[b-q781n7l51y] {
    font-weight: 500;
    color: #666;
    margin-bottom: 0.5rem;
}

.form-control[b-q781n7l51y] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

[b-q781n7l51y] .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}

.form-control:focus[b-q781n7l51y] {
    border-color: #2196f3;
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.1);
}



.no-results[b-q781n7l51y] {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.user-cars-list[b-q781n7l51y] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pagination[b-q781n7l51y] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.btn-pagination[b-q781n7l51y] {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pagination:hover:not(:disabled)[b-q781n7l51y] {
    background: #f8f9fa;
    border-color: #ccc;
}

.btn-pagination:disabled[b-q781n7l51y] {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info[b-q781n7l51y] {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .account-content-wrapper[b-q781n7l51y] {
        flex-direction: column;
    }

    .sidebar-col[b-q781n7l51y] {
        width: 100%;
    }

    .account-nav[b-q781n7l51y] {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .content-area[b-q781n7l51y] {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 20px;
        width: 100%;
    }
}
/* /Pages/AddCarPostPage.razor.rz.scp.css */
/* Add Post Page - uses Bootstrap col system with centered layout */

/* Override Bootstrap's default invalid field styling */
[b-hvlympo87q] .form-control.invalid,
[b-hvlympo87q] .form-control.modified.invalid,
[b-hvlympo87q] .form-control:invalid {
    border-color: #dee2e6 !important;
    background-image: none !important;
}

[b-hvlympo87q] .form-control.invalid:focus,
[b-hvlympo87q] .form-control.modified.invalid:focus,
[b-hvlympo87q] .form-control:invalid:focus {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.add-post-content[b-hvlympo87q] {
    padding: 2rem;
}

.header[b-hvlympo87q] {
    margin-bottom: 2rem;
}

.add-post-form[b-hvlympo87q] {
    width: 100%;
}

.form-section[b-hvlympo87q] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.form-section h3[b-hvlympo87q] {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    color: #2196f3;
    font-weight: 600;
}

.form-group[b-hvlympo87q] {
    margin-bottom: 20px;
}

.form-group label[b-hvlympo87q] {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-text[b-hvlympo87q] {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

.form-control[b-hvlympo87q] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control:valid[b-hvlympo87q],
.form-control:focus:valid[b-hvlympo87q] {
    border-color: #ddd !important;
    box-shadow: none !important;
}

.form-control:focus[b-hvlympo87q] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control:disabled[b-hvlympo87q] {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

textarea.form-control[b-hvlympo87q] {
    min-height: 120px;
    resize: vertical;
}

[b-hvlympo87q] .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}

.checkbox-group[b-hvlympo87q] {
    display: flex;
    align-items: center;
}

.checkbox-group label[b-hvlympo87q] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-weight: normal;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #555;
}

.checkbox-group input[type="checkbox"][b-hvlympo87q] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-actions[b-hvlympo87q] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
}

.btn-primary[b-hvlympo87q] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover:not(:disabled)[b-hvlympo87q] {
    opacity: 0.9;
}

.btn-primary:disabled[b-hvlympo87q] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-cancel[b-hvlympo87q] {
    background: transparent;
    color: #666;
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.btn-cancel:hover[b-hvlympo87q] {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

.alert[b-hvlympo87q] {
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.alert-danger[b-hvlympo87q] {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-danger ul[b-hvlympo87q] {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.alert-danger li[b-hvlympo87q] {
    margin: 4px 0;
}

.alert-success[b-hvlympo87q] {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.spinner-border[b-hvlympo87q] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-hvlympo87q 0.75s linear infinite;
}

.spinner-border-sm[b-hvlympo87q] {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.2em;
}

.me-2[b-hvlympo87q] {
    margin-right: 0.5rem;
}

@keyframes spinner-border-b-hvlympo87q {
    to {
        transform: rotate(360deg);
    }
}



.photo-expand-btn[b-hvlympo87q] {
    position: absolute;
    bottom: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

@keyframes fadeIn-b-hvlympo87q {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn-b-hvlympo87q {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Photo Upload Section */
.file-drop-zone[b-hvlympo87q] {
    position: relative;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f7fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.file-drop-zone:hover[b-hvlympo87q] {
    border-color: #4299e1;
    background-color: #ebf8ff;
}

.file-drop-zone.dragging-file[b-hvlympo87q] {
    border-color: #4299e1;
    background-color: #e6fffa;
    border-style: solid;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.file-drop-zone-content[b-hvlympo87q] {
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-drop-icon[b-hvlympo87q] {
    margin-bottom: 1rem;
    color: #4a5568;
    transition: transform 0.3s ease;
}

.file-drop-zone:hover .file-drop-icon[b-hvlympo87q] {
    transform: scale(1.1);
    color: #2b6cb0;
}

.file-drop-zone p[b-hvlympo87q] {
    margin: 0;
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

.file-drop-divider[b-hvlympo87q] {
    margin: 0.5rem 0 !important;
    font-size: 0.9rem !important;
    color: #a0aec0 !important;
    font-weight: 400 !important;
}

.btn-select-files[b-hvlympo87q] {
    display: inline-block;
    background: white;
    color: #2d3748;
    padding: 0.6rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.btn-select-files:hover[b-hvlympo87q] {
    background: #f8fafc;
    border-color: #4299e1;
    color: #2b6cb0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

[b-hvlympo87q] .file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-input-hint[b-hvlympo87q] {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #718096;
    font-style: normal;
    pointer-events: none;
}

.photo-thumbnails[b-hvlympo87q] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.photo-thumbnail-item[b-hvlympo87q] {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: move;
}

.photo-thumbnail-item:hover[b-hvlympo87q] {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    border-color: #4299e1;
}

.photo-thumbnail-item.dragging[b-hvlympo87q] {
    opacity: 0.5;
    transform: scale(0.95);
}

.photo-thumbnail-item.drag-over[b-hvlympo87q] {
    border-color: #2196f3;
    border-style: dashed;
    background-color: rgba(33, 150, 243, 0.05);
}

.photo-thumbnail-img[b-hvlympo87q] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-remove-btn[b-hvlympo87q] {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    color: #e53e3e;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.photo-remove-btn:hover[b-hvlympo87q] {
    background: #e53e3e;
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .add-post-form[b-hvlympo87q] {
        max-width: 100%;
    }

    .form-section[b-hvlympo87q] {
        padding: 16px;
    }

    .form-actions[b-hvlympo87q] {
        flex-direction: column;
    }

    .btn-primary[b-hvlympo87q],
    .btn-cancel[b-hvlympo87q] {
        width: 100%;
        justify-content: center;
    }

    .photo-thumbnails[b-hvlympo87q] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
}

.photo-thumbnail-spinner[b-hvlympo87q] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f7fafc;
}

.photo-thumbnail-spinner .spinner-small[b-hvlympo87q] {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin-b-hvlympo87q 1s linear infinite;
}

@keyframes spin-b-hvlympo87q {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/CarDetails.razor.rz.scp.css */
/* Use Bootstrap container-fluid with col system for responsive layout */
.page-wrapper[b-jvu28bf9w1] {
    padding-top: 2rem;
}

.car-details-container-wrapper[b-jvu28bf9w1] {
    background: white;
    min-height: 100vh;
    padding: 20px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav[b-jvu28bf9w1] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: none !important;
    flex-wrap: wrap;
}

.breadcrumb-item[b-jvu28bf9w1] {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    color: #2196f3;
    transition: all 0.2s;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.breadcrumb-item:hover[b-jvu28bf9w1] {
    color: #1976d2;
}

.breadcrumb-button[b-jvu28bf9w1] {
    font-family: inherit;
}

.breadcrumb-separator[b-jvu28bf9w1] {
    color: #999;
    font-size: 1rem;
    user-select: none;
}

/* Back button (used in error state) */
.btn-back[b-jvu28bf9w1] {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 16px;
    color: #2196f3;
    transition: all 0.2s;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-back:hover[b-jvu28bf9w1] {
    color: #1976d2;
}


/* Loading & Error */
.loading-container[b-jvu28bf9w1],
.error-container[b-jvu28bf9w1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 20px;
}

.spinner[b-jvu28bf9w1] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2196f3;
    border-radius: 50%;
    animation: spin-b-jvu28bf9w1 1s linear infinite;
}

@keyframes spin-b-jvu28bf9w1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Content Wrapper for two-column layout */
.content-wrapper[b-jvu28bf9w1] {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

/* Images Section */
.images-section[b-jvu28bf9w1] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none !important;
    flex: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.main-image-container[b-jvu28bf9w1] {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.sold-label[b-jvu28bf9w1] {
    position: absolute;
    top: 25px;
    left: -40px;
    width: 160px;
    background-color: #FFF9C4; /* Pale yellow */
    color: #5D4037; /* Dark brown */
    text-align: center;
    padding: 6px 0;
    transform: rotate(-45deg);
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    pointer-events: none;
}

.main-image[b-jvu28bf9w1] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.no-image-placeholder[b-jvu28bf9w1] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
}

.no-image-icon[b-jvu28bf9w1] {
    opacity: 0.5;
}

.favorite-btn[b-jvu28bf9w1] {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
}

.favorite-btn:hover[b-jvu28bf9w1] {
    background: rgba(0, 0, 0, 0.7);
}

.favorite-btn.is-favorite[b-jvu28bf9w1] {
    color: white;
}

.favorite-btn.is-favorite:hover[b-jvu28bf9w1] {
    color: white;
}

.photo-expand-btn[b-jvu28bf9w1] {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.nav-btn[b-jvu28bf9w1] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.nav-btn:hover[b-jvu28bf9w1] {
    background: rgba(0, 0, 0, 0.7);
}

.nav-btn-prev[b-jvu28bf9w1] {
    left: 16px;
}

.nav-btn-next[b-jvu28bf9w1] {
    right: 16px;
}

.image-counter-pill[b-jvu28bf9w1] {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}


/* Details Sidebar */
.details-sidebar[b-jvu28bf9w1] {
    flex: 1;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: none !important;
    align-self: flex-start;
    min-width: 0;
}

.title-price[b-jvu28bf9w1] {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

.title-price h2[b-jvu28bf9w1] {
    margin: 0 0 12px 0;
    font-size: 1.8rem;
    color: #333;
}

.price[b-jvu28bf9w1] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2e7d32;
}

.sold-badge-container[b-jvu28bf9w1] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge[b-jvu28bf9w1] {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-sold[b-jvu28bf9w1] {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Details Groups */
.details-group[b-jvu28bf9w1] {
    margin-bottom: 24px;
}

.group-title[b-jvu28bf9w1] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2196f3;
    margin: 0 0 16px 0;
    padding-bottom: 0;
    border-bottom: none;
}

.details-grid[b-jvu28bf9w1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.detail-item[b-jvu28bf9w1] {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
}

.detail-label[b-jvu28bf9w1] {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-value[b-jvu28bf9w1] {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Seller Info */
.seller-info[b-jvu28bf9w1] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.seller-details[b-jvu28bf9w1] {
    margin: 0;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.seller-content[b-jvu28bf9w1] {
    flex: 1;
    width: 100%;
}

.seller-details p[b-jvu28bf9w1] {
    margin: 8px 0;
    color: #333;
}

.seller-details strong[b-jvu28bf9w1] {
    color: #333;
    font-weight: 600;
}

.btn-call[b-jvu28bf9w1] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, opacity 0.3s, visibility 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    width: 100%;
    min-height: 48px;
    opacity: 1;
    visibility: visible;
}

.btn-call.hidden[b-jvu28bf9w1] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.btn-call:hover:not(.hidden)[b-jvu28bf9w1] {
    background: #27632a;
}

.btn-show-phone[b-jvu28bf9w1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    margin-left: 8px;
    background: transparent;
    border: 1px solid #007bff;
    border-radius: 12px;
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    vertical-align: middle;
}

.btn-show-phone:hover[b-jvu28bf9w1] {
    background: #f0f8ff;
}

.phone-number[b-jvu28bf9w1] {
    margin-left: 8px;
}

.phone-icon[b-jvu28bf9w1] {
    width: 20px;
    height: 20px;
    color: white;
}

.details-group-header[b-jvu28bf9w1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.details-group-header .group-title[b-jvu28bf9w1] {
    margin: 0;
}

.details-header .section-title[b-jvu28bf9w1] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.btn-report[b-jvu28bf9w1] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--danger-color);
    border-radius: 8px;
    color: var(--danger-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-report:hover[b-jvu28bf9w1] {
    background: var(--danger-hover-bg);
    border-color: var(--danger-hover-border);
    color: var(--danger-hover-border);
    box-shadow: 0 2px 4px rgba(235, 87, 87, 0.1);
}

.btn-report svg[b-jvu28bf9w1] {
    stroke-width: 2.5px;
}

.report-success-alert[b-jvu28bf9w1] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
    border-left: 4px solid #4caf50;
    animation: slideDown-b-jvu28bf9w1 0.3s ease-out;
}

@keyframes slideDown-b-jvu28bf9w1 {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Details Section */
.details-section[b-jvu28bf9w1] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: none !important;
}

/* New styles for the two-column layout */
.content-wrapper[b-jvu28bf9w1] {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}



.details-sidebar[b-jvu28bf9w1] {
    flex: 1;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
    box-shadow: none !important;
}

.title-price[b-jvu28bf9w1] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.title-price h2[b-jvu28bf9w1] {
    margin: 0;
    font-size: 1.8rem;
    color: #333;
}

.price[b-jvu28bf9w1] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2e7d32;
    margin-top: 8px;
}

/* Seller Info */
.seller-info[b-jvu28bf9w1] {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    border-bottom: none;
}

.seller-details[b-jvu28bf9w1] {
    margin: 0;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.group-title[b-jvu28bf9w1] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2196f3;
    margin: 0 0 16px 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Details Section (remaining car details) */
.details-section[b-jvu28bf9w1] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: none !important;
}

/* Social Share */
.social-share[b-jvu28bf9w1] {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
}

.share-btn[b-jvu28bf9w1] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
}

.share-btn:hover[b-jvu28bf9w1] {
    transform: translateY(-2px);
}

.share-facebook[b-jvu28bf9w1] {
    background: #1877f2;
}

.share-whatsapp[b-jvu28bf9w1] {
    background: #25d366;
}

.share-copy[b-jvu28bf9w1] {
    background: #6c757d;
}

/* Responsive - Bootstrap breakpoints */
@media (max-width: 767px) {
    .breadcrumb-nav[b-jvu28bf9w1] {
        padding: 12px;
        gap: 6px;
    }

    .breadcrumb-item[b-jvu28bf9w1] {
        font-size: 0.9rem;
        padding: 4px 6px;
    }

    .breadcrumb-separator[b-jvu28bf9w1] {
        font-size: 0.9rem;
    }

    .content-wrapper[b-jvu28bf9w1] {
        flex-direction: column;
    }

    .main-image-container[b-jvu28bf9w1] {
        height: 300px;
    }

    .details-sidebar[b-jvu28bf9w1] {
        padding: 16px;
    }

    .title-price[b-jvu28bf9w1] {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .title-price h2[b-jvu28bf9w1] {
        font-size: 1.4rem;
    }

    .price[b-jvu28bf9w1] {
        font-size: 1.4rem;
    }

    .details-grid[b-jvu28bf9w1] {
        grid-template-columns: 1fr;
    }

    .details-group[b-jvu28bf9w1] {
        margin-bottom: 16px;
    }

    .btn-call[b-jvu28bf9w1] {
        padding: 14px;
        font-size: 1rem;
    }
}
/* /Pages/Contact.razor.rz.scp.css */
.page-wrapper[b-zduegv9o9x] {
    padding: 2rem 1rem;
}

.contact-header[b-zduegv9o9x] {
    margin-bottom: 2rem;
}

.contact-header h2[b-zduegv9o9x] {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
}

.contact-content[b-zduegv9o9x] {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form[b-zduegv9o9x] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group[b-zduegv9o9x] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label[b-zduegv9o9x] {
    display: block;
    margin: 0;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control[b-zduegv9o9x] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus[b-zduegv9o9x] {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-control:hover:not(:focus)[b-zduegv9o9x] {
    border-color: #bbb;
}

textarea.form-control[b-zduegv9o9x] {
    resize: vertical;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-text[b-zduegv9o9x] {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

.form-actions[b-zduegv9o9x] {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    justify-content: flex-end;
}

.btn[b-zduegv9o9x] {
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-primary[b-zduegv9o9x] {
    background-color: #2196f3;
    color: white;
    border-color: #2196f3;
}

.btn-primary:hover:not(:disabled)[b-zduegv9o9x] {
    background-color: #1976d2;
    border-color: #1976d2;
}

.btn-primary:disabled[b-zduegv9o9x] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-outline-secondary[b-zduegv9o9x] {
    border-color: #999;
    color: #555;
    background-color: transparent;
}

.btn-outline-secondary:hover[b-zduegv9o9x] {
    background-color: #f8f9fa;
    color: #333;
    border-color: #555;
}

.alert[b-zduegv9o9x] {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid;
    margin-bottom: 1rem;
}

.alert-success[b-zduegv9o9x] {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger[b-zduegv9o9x] {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning[b-zduegv9o9x] {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

.alert ul[b-zduegv9o9x] {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.contact-info[b-zduegv9o9x] {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-info h4[b-zduegv9o9x] {
    color: #2196f3;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info p[b-zduegv9o9x] {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-info ul[b-zduegv9o9x] {
    margin: 1rem 0 0 0;
    padding-left: 1.25rem;
}

.contact-info li[b-zduegv9o9x] {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-info strong[b-zduegv9o9x] {
    color: #333;
}

.loading-container[b-zduegv9o9x] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.spinner[b-zduegv9o9x] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2196f3;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-zduegv9o9x 1s linear infinite;
}

@keyframes spin-b-zduegv9o9x {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.text-center[b-zduegv9o9x] {
    text-align: center;
}

.mt-2[b-zduegv9o9x] {
    margin-top: 0.5rem;
}

.mt-4[b-zduegv9o9x] {
    margin-top: 1.5rem;
}

.mt-5[b-zduegv9o9x] {
    margin-top: 3rem;
}

.ms-2[b-zduegv9o9x] {
    margin-left: 0.5rem;
}

.mb-0[b-zduegv9o9x] {
    margin-bottom: 0;
}

.me-2[b-zduegv9o9x] {
    margin-right: 0.5rem;
}

.me-3[b-zduegv9o9x] {
    margin-right: 1rem;
}

/* CAPTCHA styles */
.captcha-group[b-zduegv9o9x] {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 1rem;
}

.captcha-image-container[b-zduegv9o9x] {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0.5rem;
}

.captcha-image[b-zduegv9o9x] {
    border: 2px solid #ddd;
    border-radius: 4px;
    background: #fff;
    max-width: 200px;
    height: auto;
}

.btn-refresh[b-zduegv9o9x] {
    padding: 10px 15px;
    font-size: 1.2rem;
    min-width: 50px;
    flex-shrink: 0;
}

.captcha-loading[b-zduegv9o9x] {
    display: flex;
    align-items: center;
    padding: 12px;
    color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
    .page-wrapper[b-zduegv9o9x] {
        padding: 1rem 0.5rem;
    }

    .contact-content[b-zduegv9o9x] {
        padding: 1.5rem 1rem;
    }

    .form-actions[b-zduegv9o9x] {
        flex-direction: column;
    }

    .btn[b-zduegv9o9x] {
        width: 100%;
    }
}
/* /Pages/EditCarPostPage.razor.rz.scp.css */
/* Edit Post Page - uses Bootstrap col system with centered layout */

/* Override Bootstrap's default invalid field styling */
[b-i3y5j597lm] .form-control.invalid,
[b-i3y5j597lm] .form-control.modified.invalid,
[b-i3y5j597lm] .form-control:invalid {
    border-color: #dee2e6 !important;
    background-image: none !important;
}

[b-i3y5j597lm] .form-control.invalid:focus,
[b-i3y5j597lm] .form-control.modified.invalid:focus,
[b-i3y5j597lm] .form-control:invalid:focus {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.add-post-content[b-i3y5j597lm] {
    padding: 2rem;
}

.header[b-i3y5j597lm] {
    margin-bottom: 2rem;
}

.add-post-form[b-i3y5j597lm] {
    width: 100%;
}

.form-section[b-i3y5j597lm] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.form-section h3[b-i3y5j597lm] {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    color: #2196f3;
    font-weight: 600;
}

.form-group[b-i3y5j597lm] {
    margin-bottom: 20px;
}

.form-group label[b-i3y5j597lm] {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-text[b-i3y5j597lm] {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

.form-control[b-i3y5j597lm] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control:valid[b-i3y5j597lm],
.form-control:focus:valid[b-i3y5j597lm] {
    border-color: #ddd !important;
    box-shadow: none !important;
}

.form-control:focus[b-i3y5j597lm] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control:disabled[b-i3y5j597lm] {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

textarea.form-control[b-i3y5j597lm] {
    min-height: 120px;
    resize: vertical;
}

[b-i3y5j597lm] .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}

.checkbox-group[b-i3y5j597lm] {
    display: flex;
    align-items: center;
}

.checkbox-group label[b-i3y5j597lm] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-weight: normal;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #555;
}

.checkbox-group input[type="checkbox"][b-i3y5j597lm] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-actions[b-i3y5j597lm] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
}

.btn-primary[b-i3y5j597lm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover:not(:disabled)[b-i3y5j597lm] {
    opacity: 0.9;
}

.btn-primary:disabled[b-i3y5j597lm] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-cancel[b-i3y5j597lm] {
    background: transparent;
    color: #666;
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.btn-cancel:hover[b-i3y5j597lm] {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

.alert[b-i3y5j597lm] {
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.alert-danger[b-i3y5j597lm] {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-danger ul[b-i3y5j597lm] {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.alert-success[b-i3y5j597lm] {
    background-color: #e6fffa;
    color: #2c7a7b;
    border: 1px solid #b2f5ea;
}

.loading-container[b-i3y5j597lm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.spinner[b-i3y5j597lm] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin-b-i3y5j597lm 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-i3y5j597lm {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Photo section styles */
.file-drop-zone[b-i3y5j597lm] {
    position: relative;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f7fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.file-drop-zone:hover[b-i3y5j597lm] {
    border-color: #4299e1;
    background-color: #ebf8ff;
}

.file-drop-zone.dragging-file[b-i3y5j597lm] {
    border-color: #4299e1;
    background-color: #e6fffa;
    border-style: solid;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.file-drop-zone-content[b-i3y5j597lm] {
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-drop-icon[b-i3y5j597lm] {
    margin-bottom: 1rem;
    color: #4a5568;
    transition: transform 0.3s ease;
}

.file-drop-zone:hover .file-drop-icon[b-i3y5j597lm] {
    transform: scale(1.1);
    color: #2b6cb0;
}

.file-drop-zone p[b-i3y5j597lm] {
    margin: 0;
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

.file-drop-divider[b-i3y5j597lm] {
    margin: 0.5rem 0 !important;
    font-size: 0.9rem !important;
    color: #a0aec0 !important;
    font-weight: 400 !important;
}

.btn-select-files[b-i3y5j597lm] {
    display: inline-block;
    background: white;
    color: #2d3748;
    padding: 0.6rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.btn-select-files:hover[b-i3y5j597lm] {
    background: #f8fafc;
    border-color: #4299e1;
    color: #2b6cb0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

[b-i3y5j597lm] .file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-input-hint[b-i3y5j597lm] {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #718096;
    font-style: normal;
    pointer-events: none;
}

.photo-thumbnails[b-i3y5j597lm] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.photo-thumbnail-item[b-i3y5j597lm] {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: move;
}

.photo-thumbnail-item:hover[b-i3y5j597lm] {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    border-color: #4299e1;
}

.photo-thumbnail-item.dragging[b-i3y5j597lm] {
    opacity: 0.5;
    transform: scale(0.95);
}

.photo-thumbnail-item.drag-over[b-i3y5j597lm] {
    border-color: #2196f3;
    border-style: dashed;
    background-color: rgba(33, 150, 243, 0.05);
}

.photo-thumbnail-img[b-i3y5j597lm] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-remove-btn[b-i3y5j597lm] {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    color: #e53e3e;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.photo-remove-btn:hover[b-i3y5j597lm] {
    background: #e53e3e;
    color: white;
    transform: scale(1.1);
}

.photo-expand-btn[b-i3y5j597lm] {
    position: absolute;
    bottom: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.photo-expand-btn:hover[b-i3y5j597lm] {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.photo-thumbnail-spinner[b-i3y5j597lm] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f7fafc;
}

.photo-thumbnail-spinner .spinner-small[b-i3y5j597lm] {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin-b-i3y5j597lm 1s linear infinite;
}
/* /Pages/Favorites.razor.rz.scp.css */
/* Use Bootstrap col system for responsive layout */
.favorites-content[b-1c22wpp2qw] {
    padding: 2rem;
}

.favorites-header[b-1c22wpp2qw] {
    margin-bottom: 2rem;
}





.no-results[b-1c22wpp2qw] {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-results p[b-1c22wpp2qw] {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.no-results a[b-1c22wpp2qw] {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
}

.no-results a:hover[b-1c22wpp2qw] {
    text-decoration: underline;
}

.cars-grid[b-1c22wpp2qw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pagination[b-1c22wpp2qw] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
}

.btn-pagination[b-1c22wpp2qw] {
    padding: 0.75rem 1.5rem;
    background: #1976d2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-pagination:hover:not(:disabled)[b-1c22wpp2qw] {
    background: #1565c0;
}

.btn-pagination:disabled[b-1c22wpp2qw] {
    background: #ccc;
    cursor: not-allowed;
}

.page-info[b-1c22wpp2qw] {
    font-size: 0.95rem;
    color: #666;
}
/* /Pages/Home.razor.rz.scp.css */
/* Use Bootstrap container with constrained layout */
.page-wrapper[b-rvyj350qry] {
    padding: 2rem 1rem;
}

.home-header[b-rvyj350qry] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.home-content-wrapper[b-rvyj350qry] {
    display: flex;
    gap: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    align-items: flex-start;
}

.sidebar-col[b-rvyj350qry] {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    align-self: flex-start;
}

.content-area[b-rvyj350qry] {
    flex-grow: 1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header[b-rvyj350qry] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.sort-container[b-rvyj350qry] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label[b-rvyj350qry] {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}

.sort-select[b-rvyj350qry] {
    width: auto;
    min-width: 180px;
    padding: 6px 30px 6px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.sort-select:hover[b-rvyj350qry] {
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.sort-select:focus[b-rvyj350qry] {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

.home-header h2[b-rvyj350qry] {
    margin: 0;
    color: #333;
}

.header h1[b-rvyj350qry] {
    margin: 0 0 12px 0;
    font-size: 1.8rem;
    color: #333;
}

.results-count[b-rvyj350qry] {
    margin: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

/* Filter Chips Container */
.filter-chips-container[b-rvyj350qry] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.filter-chips-label[b-rvyj350qry] {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    padding-top: 8px;
    white-space: nowrap;
}

.filter-chips[b-rvyj350qry] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

/* Individual Filter Chip */
.filter-chip[b-rvyj350qry] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid #2196f3;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    color: #1976d2;
}

.filter-chip:hover[b-rvyj350qry] {
    background: transparent;
    border-color: #1976d2;
}

.filter-chip span:first-child[b-rvyj350qry] {
    font-weight: 500;
}

.filter-chip .chip-remove[b-rvyj350qry] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(25, 118, 210, 0.2);
    color: #1976d2;
    border-radius: 50%;
    font-size: 0.7rem;
    line-height: 1;
    transition: all 0.2s;
}

.filter-chip:hover .chip-remove[b-rvyj350qry] {
    background: rgba(25, 118, 210, 0.3);
}

/* Clear All Filters Chip */
.clear-all-chip[b-rvyj350qry] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid #f44336;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    color: #d32f2f;
    font-weight: 500;
}

.clear-all-chip:hover[b-rvyj350qry] {
    background: transparent;
    border-color: #d32f2f;
}

.clear-all-chip .chip-remove[b-rvyj350qry] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(211, 47, 47, 0.2);
    color: #d32f2f;
    border-radius: 50%;
    font-size: 0.7rem;
    line-height: 1;
    transition: all 0.2s;
}

.clear-all-chip:hover .chip-remove[b-rvyj350qry] {
    background: rgba(211, 47, 47, 0.3);
}

/* Active Filter Chip (legacy - can be removed if not used elsewhere) */
.active-filter-chip[b-rvyj350qry] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #007bff;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.active-filter-chip:hover[b-rvyj350qry] {
    background: #f0f8ff;
}

.active-filter-chip span[b-rvyj350qry] {
    font-size: 0.9rem;
    color: #007bff;
}

.active-filter-chip .clear-btn[b-rvyj350qry] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    line-height: 1;
}

/* Cars Grid */
.cars-grid[b-rvyj350qry] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}



/* No Results */
.no-results[b-rvyj350qry] {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
}

/* Pagination */
.pagination[b-rvyj350qry] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    margin-top: 20px;
}

.btn-pagination[b-rvyj350qry] {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s, opacity 0.2s;
    min-width: 100px;
}

.btn-pagination:hover:not(:disabled)[b-rvyj350qry] {
    background: #0056b3;
}

.btn-pagination:disabled[b-rvyj350qry] {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-pagination:active:not(:disabled)[b-rvyj350qry] {
    transform: scale(0.98);
}

.page-info[b-rvyj350qry] {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

/* Responsive Design - Bootstrap breakpoints */
@media (max-width: 991px) {
    .cars-grid[b-rvyj350qry] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar-col[b-rvyj350qry] {
        width: 30%;
    }
}

@media (max-width: 767px) {
    .home-content-wrapper[b-rvyj350qry] {
        flex-direction: column;
        padding: 12px;
    }
    
    .sidebar-col[b-rvyj350qry] {
        width: 100%;
        height: auto;
        overflow-y: visible;
    }
    
    .content-area[b-rvyj350qry] {
        height: auto;
        overflow-y: visible;
    }

    .cars-grid[b-rvyj350qry] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .header h1[b-rvyj350qry] {
        font-size: 1.5rem;
    }

    .home-header[b-rvyj350qry] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-left: 0;
    }

    .sort-container[b-rvyj350qry] {
        width: 100%;
    }

    .sort-select[b-rvyj350qry] {
        flex-grow: 1;
        min-width: 0;
    }

    .filter-chips-container[b-rvyj350qry] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .filter-chips-label[b-rvyj350qry] {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .filter-chip[b-rvyj350qry] {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
}
/* /Pages/PrivacyPolicy.razor.rz.scp.css */
.container[b-hthrf373g5] {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

h1[b-hthrf373g5] {
    color: #333;
    font-weight: 700;
}

h3[b-hthrf373g5] {
    color: #333;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

p[b-hthrf373g5], li[b-hthrf373g5] {
    line-height: 1.6;
    color: #555;
}

section[b-hthrf373g5] {
    margin-bottom: 30px;
}
/* /Pages/TermsAndConditions.razor.rz.scp.css */
.container[b-5c9ekswpxn] {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

h1[b-5c9ekswpxn] {
    color: #333;
    font-weight: 700;
}

h3[b-5c9ekswpxn] {
    color: #333;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

p[b-5c9ekswpxn], li[b-5c9ekswpxn] {
    line-height: 1.6;
    color: #555;
}

section[b-5c9ekswpxn] {
    margin-bottom: 30px;
}
