/* Global Filter Bar Styles */
.jcauto-global-filter-wrapper {
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding:0px !important;
	background:transparent !important;
}

.jcauto-global-filter {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.jcauto-global-filter select {
    flex: 1;
    min-width: 180px;
    height: 48px;
    padding: 8px 16px;
    color: #333;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jcauto-global-filter select:focus {
    outline: none;
    border-color: #6b1b1b;
    box-shadow: 0 0 0 3px rgba(107, 27, 27, 0.1);
}

.jcauto-global-filter select:disabled {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

#jcauto-global-search {
    background: linear-gradient(135deg, #6b1b1b 0%, #8b2b2b 100%);
    color: #fff;
    border: none;
    padding: 0 32px;
    height: 48px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(107, 27, 27, 0.3);
}

#jcauto-global-search:hover {
    background: linear-gradient(135deg, #8b2b2b 0%, #6b1b1b 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 27, 27, 0.4);
}

#jcauto-global-search:active {
    transform: translateY(0);
}

#jcauto-global-clear {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0 24px;
    height: 48px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#jcauto-global-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .jcauto-global-filter {
        flex-direction: column;
    }

    .jcauto-global-filter select,
    #jcauto-global-search,
    #jcauto-global-clear {
        width: 100%;
        min-width: auto;
    }
}

/* Optional: Sticky positioning */
.jcauto-global-filter-wrapper.sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}