/* Black Background Wrapper from Mockup */
.custom-ymm-wrapper {
    background-color: #000000;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
}

/* Top Row - 5 Select Boxes Inline */
.form-row-top {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-group {
    flex: 1 1 18%; /* Fits 5 across nicely */
    min-width: 150px;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    appearance: auto;
}

.filter-group select:disabled {
    background-color: #e0e0e0;
    color: #888888;
    cursor: not-allowed;
}

/* Bottom Row - Align Clear Button to Right */
.form-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.truck-graphic {
    /* Optional placeholder for your white truck image */
    flex: 1; 
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

/* Red Clear Button */
#ymm-reset {
    background-color: #cc0000;
    color: #ffffff;
    border: none;
    padding: 12px 60px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#ymm-reset:hover {
    background-color: #ff0000;
}

/* Results Loading Container */
#ymm-loading {
    text-align: center;
    padding: 20px;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .filter-group { flex: 1 1 30%; }
}
@media (max-width: 768px) {
    .filter-group { flex: 1 1 45%; }
}
@media (max-width: 480px) {
    .filter-group { flex: 1 1 100%; }
    #ymm-reset { width: 100%; }
}




