.dw-wrap {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.dw-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    margin-bottom: 15px;
}

.dw-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.dw-field select,
.dw-field input[type="text"] {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    color: #333;
    box-sizing: border-box;
}

.dw-field select:focus,
.dw-field input[type="text"]:focus {
    outline: none;
    border-color: #222;
}

.dw-field input::placeholder {
    color: #aaa;
}

.dw-optgroup {
    font-weight: 700;
    color: #222;
    background: #eee;
}

.dw-btn {
    display: block;
    width: 100%;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #222;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.dw-btn:hover {
    background: #444;
}

.dw-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.dw-results {
    min-height: 40px;
}

.dw-prompt,
.dw-no-results {
    padding: 10px 0;
    text-align: center;
    color: #888;
    font-size: 13px;
    font-style: italic;
}

.dw-result-count {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.dw-result-group {
    margin-bottom: 18px;
}

.dw-group-heading {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dw-result-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dw-result-item {
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
}

.dw-result-item:last-child {
    border-bottom: none;
}

.dw-result-item a {
    color: #222;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
}

.dw-result-item a:hover {
    color: #666;
}

.dw-load-more {
    margin-top: 12px;
    background: #fff;
    color: #222;
    border: 2px solid #222;
}

.dw-load-more:hover {
    background: #222;
    color: #fff;
}

.dw-loading {
    text-align: center;
    padding: 20px;
    color: #888;
    font-size: 13px;
}

.dw-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top-color: #222;
    border-radius: 50%;
    animation: dw-spin 0.6s linear infinite;
    vertical-align: middle;
    margin-left: 8px;
}

@keyframes dw-spin {
    to { transform: rotate(360deg); }
}
