
.scs-widget {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.scs-search-section {
    margin-bottom: 15px;
}

.scs-search-form {
    width: 100%;
}

.scs-search-box {
    display: flex;
    gap: 8px;
    width: 100%;
}

.scs-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.scs-input:focus {
    outline: none;
    border-color: #666;
    box-shadow: 0 0 0 2px rgba(102,102,102,0.1);
}

.scs-search-button {
    padding: 12px 20px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.scs-search-button:hover {
    background: #555;
}

.scs-help-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.scs-help-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.scs-help-link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scs-search-box {
        flex-direction: column;
        gap: 8px;
    }
}