.ksc-search-container {
    max-width: 350px;
    background-color: #f8f9fa;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 20px auto;
    text-align: center;
    box-sizing: border-box;
}

.ksc-search-container input[type="text"],
.ksc-search-container button {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.ksc-search-container button {
    background-color: #0056b3;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ksc-search-container button:hover {
    background-color: #004494;
}
