#wc-filters .select2-container--default .select2-selection--multiple {
    background: #111;
    border-radius: 12px;
    border: 1px solid #333;
    min-height: 50px;
    padding: 6px;
}

#wc-filters .select2-selection__choice {
    background: #1e1e1e !important;
    border: none !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 6px 12px !important;
}

#wc-filters .select2-search__field{
    border:none;
}

#afm-results {
    display: inline-grid;
    grid-template-columns: auto auto auto auto;
    padding: 20px;
} 
.aircraft-card {
    padding: 20px;
    text-align: center;
}
.aircraft-card .aircraft-img{
    width: 300px;
    height: 250px;
}
#afm-pagination a.page {
    margin: 20px;
}

#afm-loader {
    display: none;
    position: fixed;      
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;        
}

#afm-loader .spinner  {
    display: inline-block;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Page numbers */
.pagination{
    display: flex;
    justify-content: center;
}
.pagination .page {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #eee;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
}

.pagination .page:hover {
    border-color: #ccc;
}

/* Active page */
.pagination .page.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Prev / Next buttons */
.pagination .prev,
.pagination .next {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.pagination .prev:hover,
.pagination .next:hover {
    border-color: #ccc;
}

/* Disabled state */
.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
    margin:20px;
}



