.webnet-search-wrapper {
background: #fff;
padding: 25px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
margin-bottom: 30px;
border: 1px solid #e1e1e1;
}
.ws-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}
.ws-field label {
display: block;
font-weight: 600;
margin-bottom: 5px;
font-size: 0.9rem;
color: #333;
}
.ws-field input, 
.ws-field select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
height: 42px; 
}
.ws-inputs { display: flex; gap: 5px; }
.ws-inputs input { width: 50%; }
.ws-advanced { margin-top: 15px; padding-top: 15px; border-top: 1px dashed #ddd; }
.ws-label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 0.9rem; }
.ws-checkboxes { display: flex; flex-wrap: wrap; gap: 15px; }
.ws-check { font-size: 0.9rem; display: flex; align-items: center; gap: 5px; cursor: pointer; }
.ws-actions { margin-top: 20px; display: flex; gap: 10px; align-items: center; }
.ws-submit { background: #2271b1; color: white; padding: 12px 30px; border: none; border-radius: 4px; font-weight: bold; cursor: pointer; text-transform: uppercase; transition: background 0.3s; flex: 1; }
.ws-submit:hover { background: #135e96; }
.ws-reset { color: #666; text-decoration: underline; font-size: 0.9rem; }
@media (max-width: 768px) {
.ws-grid { grid-template-columns: 1fr; }
}