.wwt-container {
    margin: 20px 0;
    font-family: inherit;
}
.wwt-search-area {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.wwt-input {
    flex-grow: 1;
    padding: 10px;
}
.wwt-search-btn {
    padding: 10px 20px;
    cursor: pointer;
}
/* Desktop Grid: 4 columns x 3 rows */
.wwt-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}
.wwt-options-grid label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.95em;
}
/* Mobile Grid: 3 columns x 4 rows */
@media (max-width: 768px) {
    .wwt-search-area {
        flex-direction: column;
        gap: 10px;
    }
    .wwt-search-btn {
        width: 100%; /* Full width for easy tapping */
    }
    .wwt-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Results Formatting */
.wwt-results-area {
    margin-top: 15px;
}
.wwt-category-title {
    font-weight: bold;
    margin: 15px 0 10px 0;
    font-size: 1.1em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    opacity: 0.8;
}
.wwt-pill {
    display: inline-block;
    padding: 4px 12px;
    margin: 4px;
    border: 1px solid currentColor;
    border-radius: 20px;
    font-size: 0.9em;
    opacity: 0.9;
}
.wwt-error, .wwt-loading {
    font-style: italic;
    opacity: 0.7;
}

