.date-taxonomy-search-form {
    padding: 10px 10px 0 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dts-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.dts-field {
    flex: 1;
    min-width: 100px;
}

.dts-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.dts-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 40px;
    margin-bottom: 0;
}

.dts-submit {
    text-align: right;
    margin-top: 10px;
    width: 100%;
}

.dts-submit .button {
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 0;
    width: 100%;
}

.dts-submit .button:hover {
    background: #005177;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .dts-fields {
        display: flex;
        gap: 10px;
    }

    .dts-field {
        width: 33%;
     
    }

    .dts-submit {
        text-align: center;
        margin-top: 15px;
    }

    .dts-submit .button {
        width: 100%;
        padding: 12px;
    }
}
