/* Knowledge Base Search Styling */

.kbs-search-container {
    max-width: 1200px;
    /* Or match container width */
    margin: 0 auto 40px auto;
    font-family: 'Open Sans', sans-serif;
}

.kbs-search-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 600px;
    /* Limit width if needed, or 100% */
}

.kbs-search-wrap label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #262626;
}

.kbs-input-wrapper {
    position: relative;
    width: 100%;
}

.kbs-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6D6D6D;
}

.kbs-input-wrapper input {
    width: 100%;
    background-color: #F6F6F6;
    padding: 11px 14px 11px 44px;
    /* Space for icon */
    border: none;
    border-radius: 8px;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #262626;
}

.kbs-input-wrapper input::placeholder {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    color: #6D6D6D;
}