/* Override Tabler primary color */
:root {
    --tblr-primary: #474747;
}

/* Remove custom dropdown icon styles since we're using Tabler's built-in classes */

/* Override margin-left for large screens */
@media (min-width: 992px) {
    :host, :root {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Sticky result container */
.sticky-result {
    position: sticky;
    top: 20px;
    z-index: 100;
}

/* Make result container sticky */
#result-container {
    position: sticky;
    top: 50px;
    z-index: 100;
    background: var(--tblr-body-bg);
}

/* Always show vertical scrollbar */
html {
    overflow-y: scroll;
}

/* Remove background from result container when printing */
@media print {
    #result-container {
        background: none !important;
    }
    
    /* Add padding to primary card when printing */
    .card.bg-primary.text-primary-fg {
        padding: 1rem !important;
    }
    
    /* Add padding to success card body when printing */
    .card-body.bg-success-lt {
        padding: 1rem !important;
    }
}

/* Image styling for images directory */
.img-responsive {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

/* Empty state images */
.empty-img img {
    max-width: 100%;
    height: auto;
    max-height: 256px;
    object-fit: contain;
}
